Fixed 'unsigned long' breaking Windows build.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f8ecebef8c
commit
ec728e7d68
@ -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);
|
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);
|
return Arbutils::ConstString(c, l);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user