Skip to content

Commit

Permalink
Deploying to gh-pages from @ 544c253 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
virtuald committed Jun 9, 2024
1 parent e43bf3e commit eed069e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions cxxheaderparser/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,11 @@ class PlyLexer:
"final",
"float",
"for",
"__forceinline",
"friend",
"goto",
"if",
"__inline",
"inline",
"int",
"long",
Expand Down
2 changes: 2 additions & 0 deletions cxxheaderparser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2371,6 +2371,8 @@ def _parse_type(
volatile = True
elif tok_type in _attribute_start:
self._consume_attribute(tok)
elif tok_type in ("__inline", "__forceinline"):
both["inline"] = tok
else:
break

Expand Down
2 changes: 1 addition & 1 deletion cxxheaderparser/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.3.1-3-g914838c'
__version__ = '1.3.2-2-g544c253'

0 comments on commit eed069e

Please sign in to comment.