From 386323e9a6a7ac01268e0c8f671ff949077b7905 Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Wed, 7 Aug 2013 23:11:20 -0700 Subject: [PATCH] Added missing include. --- examples/common/entry/entry_android.cpp | 1 + examples/common/entry/entry_ios.mm | 2 ++ examples/common/entry/entry_linux.cpp | 5 +++-- examples/common/entry/entry_nacl.cpp | 1 + examples/common/entry/entry_osx.mm | 2 ++ examples/common/entry/entry_windows.cpp | 1 + 6 files changed, 10 insertions(+), 2 deletions(-) diff --git a/examples/common/entry/entry_android.cpp b/examples/common/entry/entry_android.cpp index 38f89ed9..9523474c 100644 --- a/examples/common/entry/entry_android.cpp +++ b/examples/common/entry/entry_android.cpp @@ -7,6 +7,7 @@ #if BX_PLATFORM_ANDROID +#include #include "entry_p.h" #include diff --git a/examples/common/entry/entry_ios.mm b/examples/common/entry/entry_ios.mm index 74c26754..58b14123 100644 --- a/examples/common/entry/entry_ios.mm +++ b/examples/common/entry/entry_ios.mm @@ -11,7 +11,9 @@ #import #import +#include #include "entry_p.h" + #include #include diff --git a/examples/common/entry/entry_linux.cpp b/examples/common/entry/entry_linux.cpp index f93f53ea..a96bb683 100644 --- a/examples/common/entry/entry_linux.cpp +++ b/examples/common/entry/entry_linux.cpp @@ -10,10 +10,11 @@ #define XK_MISCELLANY #define XK_LATIN1 #include -#include - #undef None + +#include #include "entry_p.h" + #include #include #include // memset diff --git a/examples/common/entry/entry_nacl.cpp b/examples/common/entry/entry_nacl.cpp index 457ed948..c8fc9e57 100644 --- a/examples/common/entry/entry_nacl.cpp +++ b/examples/common/entry/entry_nacl.cpp @@ -7,6 +7,7 @@ #if BX_PLATFORM_NACL +#include #include "entry_p.h" #include diff --git a/examples/common/entry/entry_osx.mm b/examples/common/entry/entry_osx.mm index 554dc718..4d2b985a 100644 --- a/examples/common/entry/entry_osx.mm +++ b/examples/common/entry/entry_osx.mm @@ -9,7 +9,9 @@ #import +#include #include "entry_p.h" + #include #include diff --git a/examples/common/entry/entry_windows.cpp b/examples/common/entry/entry_windows.cpp index a698ed78..3f0b96e6 100644 --- a/examples/common/entry/entry_windows.cpp +++ b/examples/common/entry/entry_windows.cpp @@ -7,6 +7,7 @@ #if BX_PLATFORM_WINDOWS +#include #include "entry_p.h" #include