]> granicus.if.org Git - libvpx/commitdiff
lint-hunks: remove runtime/int filter
authorGuillaume Martres <gmartres@google.com>
Tue, 15 Oct 2013 22:43:42 +0000 (15:43 -0700)
committerGuillaume Martres <gmartres@google.com>
Tue, 15 Oct 2013 22:43:58 +0000 (15:43 -0700)
There's no good reason to use types like long or short in new code.

Change-Id: Ic6de6259d5a99b7af478e9c6ab74e65d81b022e2

tools/lint-hunks.py

index b15a691432d740aaa23884545a20730ce6ca2c2b..6e25d93624ddb6840c65ee5f4e7c3d845c653f24 100755 (executable)
@@ -24,7 +24,7 @@ TOPLEVEL_CMD = ["git", "rev-parse", "--show-toplevel"]
 DIFF_CMD = ["git", "diff"]
 DIFF_INDEX_CMD = ["git", "diff-index", "-u", "HEAD", "--"]
 SHOW_CMD = ["git", "show"]
-CPPLINT_FILTERS = ["-readability/casting", "-runtime/int"]
+CPPLINT_FILTERS = ["-readability/casting"]
 
 
 class Usage(Exception):