diff options
author | Matthew Newhook <matthew@zeroc.com> | 2015-02-18 16:13:32 -0330 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2015-02-18 16:13:32 -0330 |
commit | f47c1ff78da6d755e6fc16526731bc00e6566fa0 (patch) | |
tree | 605ae1419b2bc599244d630d37c335be678337b6 /cpp/src/Slice/Python.cpp | |
parent | VC bug fix std::atomic_int style typedefs does not work (diff) | |
download | ice-f47c1ff78da6d755e6fc16526731bc00e6566fa0.tar.bz2 ice-f47c1ff78da6d755e6fc16526731bc00e6566fa0.tar.xz ice-f47c1ff78da6d755e6fc16526731bc00e6566fa0.zip |
Fix windows build issues.
Diffstat (limited to 'cpp/src/Slice/Python.cpp')
-rw-r--r-- | cpp/src/Slice/Python.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/Slice/Python.cpp b/cpp/src/Slice/Python.cpp index a14dcd4a5a2..75b118d2eef 100644 --- a/cpp/src/Slice/Python.cpp +++ b/cpp/src/Slice/Python.cpp @@ -14,6 +14,8 @@ #include <IceUtil/CtrlCHandler.h> #include <IceUtil/Mutex.h> #include <IceUtil/MutexPtrLock.h> +// BUGFIX: With MSVC2013 if this isn't included you get strange linker errors. +#include <IceUtil/FileUtil.h> #include <Slice/Preprocessor.h> #include <Slice/FileTracker.h> #include <Slice/PythonUtil.h> |