diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-10 01:07:38 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-10 01:08:07 +0200 |
commit | 0daebd97057abe5c8d338410b22e3fe00f08b3f2 (patch) | |
tree | 4b95113934f2d28266b82bfb29ac1cbdc096e8b8 | |
parent | df3b08d14018f13063c68b8886422ec7b1cbcc63 (diff) |
Core: Fix build for Intel Composer XE
-rw-r--r-- | src/server/shared/Common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/server/shared/Common.h b/src/server/shared/Common.h index 224ef7fb925..0a1389c1f38 100644 --- a/src/server/shared/Common.h +++ b/src/server/shared/Common.h @@ -85,6 +85,13 @@ #if PLATFORM == PLATFORM_WINDOWS # include <ws2tcpip.h> + +# if defined(__INTEL_COMPILER) +# if !defined(BOOST_ASIO_HAS_MOVE) +# define BOOST_ASIO_HAS_MOVE +# endif // !defined(BOOST_ASIO_HAS_MOVE) +# endif // if defined(__INTEL_COMPILER) + #else # include <sys/types.h> # include <sys/ioctl.h> |