Fixed 'unsigned long' breaking Windows build.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
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);
|
||||
}
|
||||
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue