diff options
author | Jose <jose@zeroc.com> | 2016-03-10 13:41:53 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2016-03-10 13:41:53 +0100 |
commit | 1e8db1e05c62c7b7604a020c1c3462e3dfb82ac3 (patch) | |
tree | 3ae56d88de2a9470add96ff4542ff97616062f52 /cpp/src/slice2cpp/Gen.cpp | |
parent | Merge remote-tracking branch 'origin/3.6' (diff) | |
download | ice-1e8db1e05c62c7b7604a020c1c3462e3dfb82ac3.tar.bz2 ice-1e8db1e05c62c7b7604a020c1c3462e3dfb82ac3.tar.xz ice-1e8db1e05c62c7b7604a020c1c3462e3dfb82ac3.zip |
slice2cpp minor build fix
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index dd21f474f18..cd1edb526fc 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -168,7 +168,7 @@ writeConstantValue(IceUtilInternal::Output& out, const TypePtr& type, const Synt // vector<unsigned char> u8buffer; // Buffer to convert multibyte characters - out << (wide ? "L\"" : "u8\""; + out << (wide ? "L\"" : "u8\""); for(size_t i = 0; i < value.size();) { if(charSet.find(value[i]) == charSet.end()) |