blob: 248996709ed91cbbd5e3ba6d00523c5b225e6d87 [file] [log] [blame]
#!/bin/bash
CHECK_TYPES="warning,portability,information,missingInclude"
STANDARD=c++11
ERROR_EXITCODE=1
LANG=c++
cppcheck --force --enable=${CHECK_TYPES} -U__GNUC__ -x ${LANG} src --std=${STANDARD} --error-exitcode=${ERROR_EXITCODE}