diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-14 04:03:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-14 04:03:07 +0300 |
commit | e99ab08f3c1247481c2e89b6ff0905db28a1c203 (patch) | |
tree | 63d33beaed454d097c5e3505a3a7de9171a040ea | |
parent | df35fbcbfd532e3ff33a07eaf6b79755aadadf61 (diff) | |
download | deheader-e99ab08f3c1247481c2e89b6ff0905db28a1c203.tar.gz deheader-e99ab08f3c1247481c2e89b6ff0905db28a1c203.tar.bz2 deheader-e99ab08f3c1247481c2e89b6ff0905db28a1c203.tar.xz deheader-e99ab08f3c1247481c2e89b6ff0905db28a1c203.zip |
Add missing parameter in check_block function.
-rwxr-xr-x | deheader | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1283,7 +1283,7 @@ class InclusionMap: 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 + " " + std, maker, verbosity, showerrs, subdir) + allow_parse_includes = self.check_block(sourcefile, cnt, compiler, "", defines + " " + std, defines + " " + std2, maker, verbosity, showerrs, subdir) conditions.append((c, allow_parse_includes)) elif match_preproc("else", line) is not False: if self.get_prev_flag(conditions, 2) == True: |