================
@@ -6,6 +6,6 @@
output_file = open(sys.argv[2], "w")
for line in input_file:
- m = re.search("^\s+(clang_[^;]+)", line)
+ m = re.search("^\\s+(clang_[^;]+)", line)
----------------
DamonFool wrote:> Making it a raw string is a marginally cleaner fix Yes, agree. Updated. Thanks. https://github.com/llvm/llvm-project/pull/78036 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
