1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:57:34 +00:00

LibCpp: Make 'bool' a Token::Type::KnownType

This commit is contained in:
Itamar 2021-06-05 17:53:19 +03:00 committed by Andreas Kling
parent 9dc9ddbf82
commit 8f074222e8

View file

@ -56,7 +56,6 @@ constexpr char const* s_known_keywords[] = {
"asm", "asm",
"bitand", "bitand",
"bitor", "bitor",
"bool",
"break", "break",
"case", "case",
"catch", "catch",
@ -162,6 +161,7 @@ constexpr char const* s_known_types[] = {
"Vector", "Vector",
"WeakPtr", "WeakPtr",
"auto", "auto",
"bool",
"char", "char",
"char16_t", "char16_t",
"char32_t", "char32_t",