Disabled style checking, it's faster without it and gives less false positives

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35446 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Artur Wyszynski 2010-02-10 21:02:25 +00:00
parent be8e9d5e21
commit e6b13a6d24

View File

@ -32,7 +32,7 @@ foreach my $dir (sort keys %headers) {
}
print "Running cppcheck tool...\n";
$cppcheck = "cppcheck -j $jobs --force --auto-dealloc 3rdparty/cppcheck/haiku.lst --enable=exceptRealloc,possibleError,style $headersDirs $dirToCheck 2> $fileToLog";
$cppcheck = "cppcheck -j $jobs --force --auto-dealloc 3rdparty/cppcheck/haiku.lst --enable=exceptRealloc,possibleError $headersDirs $dirToCheck 2> $fileToLog";
system($cppcheck);