зеркало из https://github.com/microsoft/clang-1.git
[libclang] Don't bind a StringRef to a temporary std::string object.
It may end up pointing at garbage. Fixes the MSVC debug build. rdar://11703319 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159377 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
1d2b2ca976
Коммит
3791814b2c
|
@ -369,7 +369,6 @@ static void clang_indexSourceFile_Impl(void *UserData) {
|
|||
IndexActionCleanup(IndexAction.get());
|
||||
|
||||
bool Persistent = requestedToGetTU;
|
||||
StringRef ResourceFilesPath = CXXIdx->getClangResourcesPath();
|
||||
bool OnlyLocalDecls = false;
|
||||
bool PrecompilePreamble = false;
|
||||
bool CacheCodeCompletionResults = false;
|
||||
|
@ -393,7 +392,7 @@ static void clang_indexSourceFile_Impl(void *UserData) {
|
|||
IndexAction.get(),
|
||||
Unit,
|
||||
Persistent,
|
||||
ResourceFilesPath,
|
||||
CXXIdx->getClangResourcesPath(),
|
||||
OnlyLocalDecls,
|
||||
/*CaptureDiagnostics=*/true,
|
||||
PrecompilePreamble,
|
||||
|
|
Загрузка…
Ссылка в новой задаче