From c6dd35c4abdfb5e5203b7733c201feeacfdec8f7 Mon Sep 17 00:00:00 2001 From: Corentin Lecouvey Date: Tue, 23 Dec 2014 11:44:58 +0100 Subject: [PATCH] Adapt check coding style tool to file extension (*.h and *.cc) Change-Id: I1bcbfc3693018106e42bc8a92423baba9c71f3c9 Signed-off-by: Corentin Lecouvey --- tools/check-coding-style | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-coding-style b/tools/check-coding-style index b980f45..0d35434 100755 --- a/tools/check-coding-style +++ b/tools/check-coding-style @@ -15,7 +15,7 @@ cd $BASE/.. # filters FILTERS="-readability/streams,-build/c++11" -cpplint.py --filter="$FILTERS" $(find . \( -name '*.hxx' -o -name '*.cxx' \) ) +cpplint.py --filter="$FILTERS" $(find . \( -name '*.h' -o -name '*.cc' \) ) RET=$? JS_RET_VAL=$? -- 2.7.4