1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 07:24:58 +00:00

AK: Specialise convert_to_uint<T> and to_uint<T> for 'long' variants

This commit is contained in:
AnotherTest 2021-01-11 21:39:22 +03:30 committed by Andreas Kling
parent ccf4368ca5
commit 7029a8f605
2 changed files with 4 additions and 0 deletions

View file

@ -243,6 +243,8 @@ template Optional<u8> StringView::to_uint() const;
template Optional<u16> StringView::to_uint() const;
template Optional<u32> StringView::to_uint() const;
template Optional<u64> StringView::to_uint() const;
template Optional<long> StringView::to_uint() const;
template Optional<long long> StringView::to_uint() const;
unsigned StringView::hash() const
{