3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-11 03:33:35 +00:00

Disabled debug output

This commit is contained in:
Christoph M. Wintersteiger 2017-05-19 18:51:52 +01:00
parent bc9740c54a
commit a258236229

View file

@ -778,7 +778,7 @@ def extract_c_includes(fname):
root_file_name = m1.group(1)
slash_pos = root_file_name.rfind('/')
if slash_pos >= 0 and root_file_name.find("..") < 0 : #it is a hack for lp include files that behave as continued from "src"
print(root_file_name)
# print(root_file_name)
root_file_name = root_file_name[slash_pos+1:]
result.append(root_file_name)
elif not system_inc_pat.match(line) and non_std_inc_pat.match(line):