Clone
ixen <ixen@copyhandler.com>
committed
on 22 Jan 16
Fixed additional warnings reported by cppcheck (CH-216) Disabled cstyleCast from being reported by cppcheck.
LoggerImprovements + 5 more
scripts/jenkins/run-cppcheck.bat (+1 -1)
1 1 @echo off
2 2 SETLOCAL
3 3
4 4 SET PATH=C:\Program Files\Cppcheck;%PATH%
5 5
6 6 mkdir "%WORKSPACE%\CPPCheck"
7 7
8   cppcheck --enable=warning,style,performance,portability,information,unusedFunction --library=microsoft_sal.cfg --library=windows.cfg --std=c++11 --xml-version=2 --xml --platform=win32W --force src 2>"%WORKSPACE%\CPPCheck\cppcheck.xml"
  8 cppcheck --enable=warning,style,performance,portability,information,unusedFunction --suppress=cstyleCast --library=microsoft_sal.cfg --library=windows.cfg --std=c++11 --xml-version=2 --xml --platform=win32W --force src 2>"%WORKSPACE%\CPPCheck\cppcheck.xml"