mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
AK: Explicitly instantiate String::to_uint<unsigned long{, long}>()
Instead of just to_uint<u64>().
This commit is contained in:
parent
2b79f36148
commit
dd370fcdd1
Notes:
sideshowbarker
2024-07-17 11:40:57 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/dd370fcdd1 Pull-request: https://github.com/SerenityOS/serenity/pull/13716
1 changed files with 2 additions and 1 deletions
|
@ -179,7 +179,8 @@ Optional<T> String::to_uint(TrimWhitespace trim_whitespace) const
|
|||
template Optional<u8> String::to_uint(TrimWhitespace) const;
|
||||
template Optional<u16> String::to_uint(TrimWhitespace) const;
|
||||
template Optional<u32> String::to_uint(TrimWhitespace) const;
|
||||
template Optional<u64> String::to_uint(TrimWhitespace) const;
|
||||
template Optional<unsigned long> String::to_uint(TrimWhitespace) const;
|
||||
template Optional<unsigned long long> String::to_uint(TrimWhitespace) const;
|
||||
|
||||
bool String::starts_with(StringView str, CaseSensitivity case_sensitivity) const
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue