From 5ab22473e34a31cce08429afe028e79a8d25c6de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 30 Nov 2008 19:32:36 +0000 Subject: [PATCH] added comment about "--debug" flag. This is used for various debugging purposes so the behaviour of c++check is undefined if it's given --- cppcheck.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cppcheck.cpp b/cppcheck.cpp index 5a15355fb..56e85869d 100644 --- a/cppcheck.cpp +++ b/cppcheck.cpp @@ -69,6 +69,7 @@ std::string CppCheck::parseFromArgs( int argc, char* argv[] ) for (int i = 1; i < argc; i++) { + // Flag used for various purposes during debugging if (strcmp(argv[i],"--debug") == 0) _settings._debug = true;