Skip to content

Commit

Permalink
Merge pull request #6 from KaruroChori/patch-1
Browse files Browse the repository at this point in the history
Added `long` to parser
  • Loading branch information
Morglod authored Sep 29, 2024
2 parents fd0d913 + 7dbe892 commit 187c7be
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,7 @@ function emitBuiltinTypes(out: ParsedClangAstResult) {
emitAlias("short", "int16_t", "no-emit");
emitAlias("unsigned short", "uint16_t", "no-emit");
emitAlias("unsigned int", "uint32_t", "no-emit");
emitAlias("long", "int64_t", "no-emit");
emitAlias("long long", "int64_t", "no-emit");
emitAlias("unsigned long long", "uint64_t", "no-emit");
emitAlias("unsigned long", "uint64_t", "no-emit");
Expand Down

0 comments on commit 187c7be

Please sign in to comment.