AK: Expand to_int<i64> to to_int<long> and to_int<long long>

This change also applys to to_uint

On i686 u64 == long long but on x86_64 u64 == long. Therefor on either
arch, one of the instantiations is missed. This change makes sure that
all integer types have an instantiation.
This commit is contained in:
Peter Elliott
2021-10-01 01:00:54 -06:00
committed by Ali Mohammad Pur
parent 285038ebcf
commit accf4b338d
2 changed files with 8 additions and 4 deletions

View File

@@ -215,7 +215,8 @@ Optional<T> StringView::to_int() const
template Optional<i8> StringView::to_int() const;
template Optional<i16> StringView::to_int() const;
template Optional<i32> StringView::to_int() const;
template Optional<i64> StringView::to_int() const;
template Optional<long> StringView::to_int() const;
template Optional<long long> StringView::to_int() const;
template<typename T>
Optional<T> StringView::to_uint() const
@@ -226,7 +227,8 @@ Optional<T> StringView::to_uint() const
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<unsigned long> StringView::to_uint() const;
template Optional<unsigned long long> StringView::to_uint() const;
template Optional<long> StringView::to_uint() const;
template Optional<long long> StringView::to_uint() const;