Browse Source
Fix a typo in c-analyzer (GH-24468)
pull/24930/head
Ikko Ashimine
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
Tools/c-analyzer/c_parser/parser/__init__.py
|
|
|
@ -158,7 +158,7 @@ def _parse(srclines, anon_name): |
|
|
|
source = _iter_source(srclines) |
|
|
|
#source = _iter_source(srclines, showtext=True) |
|
|
|
for result in parse_globals(source, anon_name): |
|
|
|
# XXX Handle blocks here insted of in parse_globals(). |
|
|
|
# XXX Handle blocks here instead of in parse_globals(). |
|
|
|
yield result |
|
|
|
|
|
|
|
|
|
|
|
|