1
0
mirror of https://github.com/OpenNebula/one.git synced 2024-12-22 13:33:52 +03:00

M #-: Update cppcheck to use c++17

(cherry picked from commit 3f0222cdafec85f329bbc8009633f4c9ad2cc26f)
This commit is contained in:
Pavel Czerny 2024-04-17 14:29:09 +02:00 committed by Ruben S. Montero
parent 91fe6acc82
commit 6e4407f061
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -19,6 +19,6 @@ DEFINES="-DSQLITE_DB -DMYSQL_DB -DPOSTGRESQL_DB -DSYSTEMD"
ENABLE="--enable=performance,information,warning,portability,style"
IGNORE="-i .xmlrpc_test/ -i src/sunstone/ -i src/svncterm_server/ -i src/fireedge -i src/parsers -i src/vmm/LibVirtDriverKVM.cc"
SUPRESS="--suppress-xml=share/smoke_tests/config/cppcheck-suppressions.xml"
OTHERS="--std=c++14 --error-exitcode=2 -q -j 4"
OTHERS="--std=c++17 --error-exitcode=2 -q -j 4"
cppcheck $SOURCES $INCLUDES $DEFINES $IGNORE $ENABLE $SUPRESS $OTHERS