From 5626d2283579c962242112e83e81de9c1522fd35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 19 Apr 2020 21:25:20 +0200 Subject: [PATCH] Tweak message. --std=posix will be deprecated in 2.05 --- cli/cmdlineparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmdlineparser.cpp b/cli/cmdlineparser.cpp index c311f21dc..b574fc6f4 100644 --- a/cli/cmdlineparser.cpp +++ b/cli/cmdlineparser.cpp @@ -638,7 +638,7 @@ bool CmdLineParser::parseFromArgs(int argc, const char* const argv[]) // --std else if (std::strcmp(argv[i], "--std=posix") == 0) { - printMessage("cppcheck: Option --std=posix is deprecated and will be removed in 1.95."); + printMessage("cppcheck: Option --std=posix is deprecated and will be removed in 2.05."); } else if (std::strcmp(argv[i], "--std=c89") == 0) { mSettings->standards.c = Standards::C89; } else if (std::strcmp(argv[i], "--std=c99") == 0) {