diff options
Diffstat (limited to 'clang/lib/Lex/LiteralSupport.cpp')
-rw-r--r-- | clang/lib/Lex/LiteralSupport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/LiteralSupport.cpp b/clang/lib/Lex/LiteralSupport.cpp index 622d758..6827e32 100644 --- a/clang/lib/Lex/LiteralSupport.cpp +++ b/clang/lib/Lex/LiteralSupport.cpp @@ -1835,7 +1835,7 @@ CharLiteralParser::CharLiteralParser(const char *begin, const char *end, llvm::TextEncodingConverter *Converter = nullptr; if (!isUTFLiteral(Kind) && LiteralConv) - Converter = LiteralConv->getConverter(ToExecCharset); + Converter = LiteralConv->getConverter(ToExecEncoding); while (begin != end) { // Is this a span of non-escape characters? |