Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the GCC directives regex.
  • Loading branch information
ericsnowcurrently committed Mar 6, 2023
commit b94daf729db8745c4cbd0a4a9c8ffe7a0f1bc470
2 changes: 1 addition & 1 deletion Tools/c-analyzer/c_parser/preprocessor/gcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
[^()]*
)*
) # <args>
( [)] [)] )? # <closed>
( [)] [)] ) # <closed>
''', re.VERBOSE)

POST_ARGS = (
Expand Down