summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/checkstyle.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/checkstyle.py b/utils/checkstyle.py
index b594a19a..d5dc26c0 100755
--- a/utils/checkstyle.py
+++ b/utils/checkstyle.py
@@ -244,9 +244,9 @@ class IncludeChecker(StyleChecker):
patterns = ('*.cpp', '*.h')
headers = ('assert', 'ctype', 'errno', 'fenv', 'float', 'inttypes',
- 'limits', 'locale', 'math', 'setjmp', 'signal', 'stdarg',
- 'stddef', 'stdint', 'stdio', 'stdlib', 'string', 'time', 'uchar',
- 'wchar', 'wctype')
+ 'limits', 'locale', 'setjmp', 'signal', 'stdarg', 'stddef',
+ 'stdint', 'stdio', 'stdlib', 'string', 'time', 'uchar', 'wchar',
+ 'wctype')
include_regex = re.compile('^#include <c([a-z]*)>')
def __init__(self, content):