mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 10:24:57 +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
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…
Add table
Add a link
Reference in a new issue