This commit is contained in:
nub31
2025-10-17 13:32:08 +02:00
parent 610e259503
commit 36eae1a2a2
5 changed files with 740 additions and 820 deletions

View File

@@ -81,7 +81,7 @@ filename = sys.argv[1]
index = clang.cindex.Index.create()
tu = index.parse(filename, ["-x", "c"])
tu = index.parse(filename, ["-x", "c", "-std=c23"])
if tu.diagnostics:
for diag in tu.diagnostics: