We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b836cf commit 9c1320dCopy full SHA for 9c1320d
src/clangparser.cpp
@@ -33,7 +33,7 @@ static std::mutex g_clangMutex;
33
ClangParser *ClangParser::instance()
34
{
35
std::lock_guard<std::mutex> lock(g_clangMutex);
36
- if (s_instance!=nullptr) s_instance = new ClangParser;
+ if (s_instance==nullptr) s_instance = new ClangParser;
37
return s_instance;
38
}
39
0 commit comments