From 354ea60b87b783b40b2955c59d71db8b46112bf1 Mon Sep 17 00:00:00 2001 From: Shohei YOSHIDA Date: Thu, 5 Oct 2023 02:52:14 +0900 Subject: [PATCH] Update C++ standard list of --std option in manpage (#5506) The manpage only lists up to C++11 and it says C++11 is default. It is out-of-dated. --- man/cppcheck.1.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/cppcheck.1.xml b/man/cppcheck.1.xml index dd968ed26..2337be871 100644 --- a/man/cppcheck.1.xml +++ b/man/cppcheck.1.xml @@ -549,7 +549,7 @@ There are false positives with this option. Each result must be carefully invest Set standard. The available options are: - c89C code is C89 compatiblec99C code is C99 compatiblec11C code is C11 compatible (default)c++03C++ code is C++03 compatiblec++11C++ code is C++11 compatible (default) + c89C code is C89 compatiblec99C code is C99 compatiblec11C code is C11 compatible (default)c++03C++ code is C++03 compatiblec++11C++ code is C++11 compatiblec++14C++ code is C++14 compatiblec++17C++ code is C++17 compatiblec++20C++ code is C++20 compatible (default)