1
0
mirror of https://github.com/SerenityOS/serenity synced 2024-07-01 11:55:37 +00:00

AK: Instantiate GenericLexer::consume_decimal_integer<size_t> on MacOS

u64 and size_t are different types on it.
This commit is contained in:
Dan Klishch 2024-06-12 14:49:33 -04:00 committed by Ali Mohammad Pur
parent 60476e247b
commit aeb17a864e

View File

@ -209,6 +209,9 @@ template ErrorOr<u32> GenericLexer::consume_decimal_integer<u32>();
template ErrorOr<i32> GenericLexer::consume_decimal_integer<i32>();
template ErrorOr<u64> GenericLexer::consume_decimal_integer<u64>();
template ErrorOr<i64> GenericLexer::consume_decimal_integer<i64>();
#ifdef AK_OS_MACOS
template ErrorOr<size_t> GenericLexer::consume_decimal_integer<size_t>();
#endif
#ifndef KERNEL
Optional<ByteString> GenericLexer::consume_and_unescape_string(char escape_char)