-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
diff --git a/src/clangparser.cpp b/src/clangparser.cpp
index b431f6a7b..7e8e34857 100644
--- a/src/clangparser.cpp
+++ b/src/clangparser.cpp
@@ -33,7 +33,7 @@ static std::mutex g_clangMutex;
ClangParser *ClangParser::instance()
{
std::lock_guard<std::mutex> lock(g_clangMutex);
- if (s_instance!=nullptr) s_instance = new ClangParser;
+ if (s_instance==nullptr) s_instance = new ClangParser;
return s_instance;
}
Reactions are currently unavailable