Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
N3rdL0rd committed Jun 19, 2024
1 parent 4d8f2b7 commit 2a86c76
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cxxheaderparser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1514,6 +1514,10 @@ def _parse_pqname_decltype_specifier(self) -> DecltypeSpecifier:
"float",
"double",
"char",
"__int8",
"__int16",
"__int32",
"__int64"
}

_fundamentals = _compound_fundamentals | {
Expand All @@ -1522,11 +1526,7 @@ def _parse_pqname_decltype_specifier(self) -> DecltypeSpecifier:
"char32_t",
"nullptr_t",
"wchar_t",
"void",
"__int8",
"__int16",
"__int32",
"__int64"
"void"
}

def _parse_pqname_fundamental(self, tok_value: str) -> FundamentalSpecifier:
Expand Down

0 comments on commit 2a86c76

Please sign in to comment.