Commit 398a5fd4 authored by evoskuil's avatar evoskuil

Problem: vs2010/12 build breaks, exclude atomic & inttypes in msvc pch.

parent 29c8e30f
...@@ -64,6 +64,9 @@ ...@@ -64,6 +64,9 @@
#else #else
#include <intrin.h> #include <intrin.h>
#endif #endif
#else
#include <atomic>
#include <inttypes.h>
#endif #endif
#include <ctype.h> #include <ctype.h>
#include <errno.h> #include <errno.h>
...@@ -99,7 +102,6 @@ ...@@ -99,7 +102,6 @@
#include <ifaddrs.h> #include <ifaddrs.h>
#endif #endif
#include <intrin.h> #include <intrin.h>
#include <inttypes.h>
#include <io.h> #include <io.h>
#include <ipexport.h> #include <ipexport.h>
#include <iphlpapi.h> #include <iphlpapi.h>
...@@ -123,7 +125,6 @@ ...@@ -123,7 +125,6 @@
// standard C++ headers // standard C++ headers
#include <algorithm> #include <algorithm>
#include <atomic>
#include <climits> #include <climits>
#include <cmath> #include <cmath>
#include <cstddef> #include <cstddef>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment