diff options
Diffstat (limited to 'clang/lib/Sema/SemaCodeComplete.cpp')
-rw-r--r-- | clang/lib/Sema/SemaCodeComplete.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaCodeComplete.cpp b/clang/lib/Sema/SemaCodeComplete.cpp index f4f42e87da3..91a8c619b26 100644 --- a/clang/lib/Sema/SemaCodeComplete.cpp +++ b/clang/lib/Sema/SemaCodeComplete.cpp @@ -2418,7 +2418,7 @@ static std::string GetDefaultValueString(const ParmVarDecl *Param, // This happens if the code is incorrect (for example class is forward declared). return ""; } - std::string DefValue{srcText}; + std::string DefValue(srcText.str()); // FIXME: remove this check if the Lexer::getSourceText value is fixed and // this value always has (or always does not have) '=' in front of it if (DefValue.at(0) != '=') { |