From 83aa00649cf74cb7ad5e2feb8fed18b419f86655 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Wed, 11 May 2016 14:10:45 -0700 Subject: [PATCH] check_format.sh: check C++ files (.cpp) Change-Id: Id3b2fb95b2770ff28c9a6561531ae787b54bdaeb Signed-off-by: Daniel Verkamp --- scripts/check_format.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/check_format.sh b/scripts/check_format.sh index 9f9c9fef6..6151fbd43 100755 --- a/scripts/check_format.sh +++ b/scripts/check_format.sh @@ -11,6 +11,7 @@ if hash astyle; then rm -f astyle.log touch astyle.log astyle --options=.astylerc "*.c" >> astyle.log + astyle --options=.astylerc "*.cpp" >> astyle.log astyle --options=.astylerc "*.h" >> astyle.log if grep -q "^Formatted" astyle.log; then echo " errors detected"