From 0cc2b5ca14a4bf81d74e880800caee786a14a4d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 14 Apr 2019 07:27:23 +0200 Subject: [PATCH] Fix wrong assignment --- lib/importproject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/importproject.cpp b/lib/importproject.cpp index dba25ed6b..a23dcc889 100644 --- a/lib/importproject.cpp +++ b/lib/importproject.cpp @@ -1003,7 +1003,7 @@ bool ImportProject::importCppcheckGuiProject(std::istream &istr, Settings *setti std::list suppressions; Settings temp; - guiProject.analyzeAllVsConfigs = false; + guiProject.analyzeAllVsConfigs.clear(); for (const tinyxml2::XMLElement *node = rootnode->FirstChildElement(); node; node = node->NextSiblingElement()) { if (strcmp(node->Name(), RootPathName) == 0 && node->Attribute(RootPathNameAttrib))