Fixed 'unsigned long' breaking Windows build.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-02-27 13:48:50 +01:00
parent f8ecebef8c
commit ec728e7d68
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 2 additions and 2 deletions

View File

@ -42,10 +42,10 @@ namespace Arbutils {
};
}
inline constexpr Arbutils::ConstString operator"" _const(const char* c, unsigned long l) {
inline constexpr Arbutils::ConstString operator"" _const(const char* c, size_t l) {
return Arbutils::ConstString(c, l);
}
inline constexpr Arbutils::ConstString operator"" _c(const char* c, unsigned long l) {
inline constexpr Arbutils::ConstString operator"" _c(const char* c, size_t l) {
return Arbutils::ConstString(c, l);
}