mirror of
https://github.com/Z3Prover/z3
synced 2025-06-02 12:21:21 +00:00
Disabled debug output
This commit is contained in:
parent
bc9740c54a
commit
a258236229
1 changed files with 1 additions and 1 deletions
|
@ -778,7 +778,7 @@ def extract_c_includes(fname):
|
||||||
root_file_name = m1.group(1)
|
root_file_name = m1.group(1)
|
||||||
slash_pos = root_file_name.rfind('/')
|
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"
|
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:]
|
root_file_name = root_file_name[slash_pos+1:]
|
||||||
result.append(root_file_name)
|
result.append(root_file_name)
|
||||||
elif not system_inc_pat.match(line) and non_std_inc_pat.match(line):
|
elif not system_inc_pat.match(line) and non_std_inc_pat.match(line):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue