diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-07-24 18:50:20 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-07-24 18:50:20 -0400 |
commit | 2afc67db3fa6f87538bb927b9621a351948883a4 (patch) | |
tree | 4324c78515e48615e082658d80fef0a0638f162c /cpp/src/IceUtil/StringConverter.cpp | |
parent | Completed fix for ICE-5567: move various C++11 classes/functions out of line (diff) | |
download | ice-2afc67db3fa6f87538bb927b9621a351948883a4.tar.bz2 ice-2afc67db3fa6f87538bb927b9621a351948883a4.tar.xz ice-2afc67db3fa6f87538bb927b9621a351948883a4.zip |
Build fixes for MinGW 4.7.2-32
Diffstat (limited to 'cpp/src/IceUtil/StringConverter.cpp')
-rw-r--r-- | cpp/src/IceUtil/StringConverter.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/cpp/src/IceUtil/StringConverter.cpp b/cpp/src/IceUtil/StringConverter.cpp index 1a6fe6e8405..19095c52a45 100644 --- a/cpp/src/IceUtil/StringConverter.cpp +++ b/cpp/src/IceUtil/StringConverter.cpp @@ -1,3 +1,16 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#if defined(__MINGW32__) && !defined(_WIN32_WINNT) + // Windows Vista and up for WC_ERR_INVALID_CHARS + #define _WIN32_WINNT 0x0600 +#endif #include <IceUtil/StringConverter.h> #include <IceUtil/MutexPtrLock.h> |