diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-06-12 18:21:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-06-12 18:21:40 +0300 |
commit | be02d139535aefaaeda2db36211186fce3de01b7 (patch) | |
tree | 4f064214e9cbf934cbb36b62aa4188b6192d948d | |
parent | dff67d602e6ae72fd8e8865eb2343e9db922578d (diff) | |
download | deheader-be02d139535aefaaeda2db36211186fce3de01b7.tar.gz deheader-be02d139535aefaaeda2db36211186fce3de01b7.tar.bz2 deheader-be02d139535aefaaeda2db36211186fce3de01b7.tar.xz deheader-be02d139535aefaaeda2db36211186fce3de01b7.zip |
Add #elif into preprocessor derectives.
-rwxr-xr-x | deheader | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1280,7 +1280,7 @@ class InclusionMap: cnt = -1 for line in open(sourcefile): cnt = cnt + 1 - c = match_preproc(["ifndef", "ifdef", "if"], line) + c = match_preproc(["ifndef", "ifdef", "if", "elif"], line) if c is not False: if allow_parse_includes == True: allow_parse_includes = self.check_block(sourcefile, cnt, compiler, defines, maker, verbosity, showerrs, subdir) |