Mercurial > hg > vamp-build-and-test
comparison DEPENDENCIES/generic/include/boost/system/windows_error.hpp @ 101:c530137014c0
Update Boost headers (1.58.0)
author | Chris Cannam |
---|---|
date | Mon, 07 Sep 2015 11:12:49 +0100 |
parents | 2665513ce2d3 |
children |
comparison
equal
deleted
inserted
replaced
100:793467b5e61c | 101:c530137014c0 |
---|---|
16 #include <boost/system/config.hpp> | 16 #include <boost/system/config.hpp> |
17 | 17 |
18 #ifdef BOOST_WINDOWS_API | 18 #ifdef BOOST_WINDOWS_API |
19 | 19 |
20 #include <boost/system/error_code.hpp> | 20 #include <boost/system/error_code.hpp> |
21 | |
22 // Neither MinGW or Cygwin versions of winerror.h work if used alone, so on | |
23 // either of those platforms include the full windows.h | |
24 | |
25 #if defined(__MINGW32__) || defined(__CYGWIN__) | |
26 #include <windows.h> | |
27 #else | |
21 #include <winerror.h> | 28 #include <winerror.h> |
29 #endif | |
22 | 30 |
23 namespace boost | 31 namespace boost |
24 { | 32 { |
25 namespace system | 33 namespace system |
26 { | 34 { |