Skip to content

Commit 808902c

Browse files
committed
#128 fix generate_amalgamated_file.py after extracting some inline files
* conditional includes starts with "# include" and regexp pattern used to discover includes was not ready for it
1 parent 0e27c53 commit 808902c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

support/generate_amalgamated_file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
output_header = root_path.joinpath(root_path, 'single_include', 'ureact', 'ureact_amalgamated.hpp')
2424

2525
# Compiled regular expression to detect ureact self includes
26-
internal_include_parser = re.compile(r'\s*#include <(ureact/.*)>.*')
26+
internal_include_parser = re.compile(r'\s*#\s*include <(ureact/.*)>.*')
2727

2828
# Copyright text
2929
copyright_text = '''\

0 commit comments

Comments
 (0)