summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/StringConverter.cpp
diff options
context:
space:
mode:
authorAustin Henriksen <austin@zeroc.com>2023-12-06 11:35:59 -0500
committerGitHub <noreply@github.com>2023-12-06 11:35:59 -0500
commite14afea88e4b3b65d29a64faa0f088cb986a9258 (patch)
treea3f6e11fab21a5105f40682d8fedeff25500a1a2 /cpp/src/IceUtil/StringConverter.cpp
parentFixed typo in _makeLambdaOutgoing name (diff)
downloadice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2
ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz
ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip
Fixed typos. (#1580)
Diffstat (limited to 'cpp/src/IceUtil/StringConverter.cpp')
-rw-r--r--cpp/src/IceUtil/StringConverter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/StringConverter.cpp b/cpp/src/IceUtil/StringConverter.cpp
index 2af835db0c8..ec5668a4e75 100644
--- a/cpp/src/IceUtil/StringConverter.cpp
+++ b/cpp/src/IceUtil/StringConverter.cpp
@@ -5,7 +5,7 @@
// TODO codecvt was deprecated in C++17 and cause build failures in C++17 mode
// For VC++ we should replace this code with MultiByteToWideChar() and WideCharToMultiByte()
#if defined(_MSC_VER) && (_MSVC_LANG >= 201703L)
-# define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
+# define _SILENCE_CXX17_CODECVT_HEADER_DEPRECATION_WARNING
#elif (__cplusplus >= 201703L)
# include <IceUtil/DisableWarnings.h>
#endif