From f750275cf9f5673339d4ac53174a6d5d8e92156a Mon Sep 17 00:00:00 2001 From: = <=> Date: Thu, 6 Aug 2015 12:07:08 -0700 Subject: [PATCH] fix _WIN32 build (there is no ) --- examples/SharedMemory/main.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/SharedMemory/main.cpp b/examples/SharedMemory/main.cpp index 88b6c1ee8..cef825f09 100644 --- a/examples/SharedMemory/main.cpp +++ b/examples/SharedMemory/main.cpp @@ -22,8 +22,7 @@ subject to the following restrictions: #include "../CommonInterfaces/CommonGUIHelperInterface.h" #include "SharedMemoryCommon.h" -#include -#include + #include @@ -31,6 +30,8 @@ static SharedMemoryCommon* example = NULL; static bool interrupted = false; #ifndef _WIN32 +#include +#include #include static void cleanup(int signo) {