We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2417bb3 commit f77f9fcCopy full SHA for f77f9fc
clang/tools/libclang/linker-script-to-export-list.py
@@ -6,6 +6,6 @@
6
output_file = open(sys.argv[2], 'w')
7
8
for line in input_file:
9
- m = re.search('^\s+(clang_[^;]+)', line)
+ m = re.search(r'^\s+(clang_[^;]+)', line)
10
if m:
11
output_file.write(m.group(1) + "\n")
0 commit comments