Make include guards pass cpplint

This commit is contained in:
Max Brunsfeld 2014-03-09 22:05:17 -07:00
parent 10b1bd0f5c
commit 31a58bc7e4
33 changed files with 112 additions and 112 deletions

View file

@ -1,6 +1,7 @@
#!/usr/bin/env bash
find src -type f | xargs externals/cpplint.py \
--root=src \
--filter=-whitespace,-readability/namespace,-legal/copyright \
2>&1
filters=-whitespace,-readability/namespace,-legal/copyright
cpplint=externals/cpplint.py
find src -type f | xargs $cpplint --root=src --filter=$filters 2>&1
find include -type f | xargs $cpplint --root=include --filter=$filters 2>&1