Make include guards pass cpplint
This commit is contained in:
parent
10b1bd0f5c
commit
31a58bc7e4
33 changed files with 112 additions and 112 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue