Quick fix

This commit is contained in:
Jeremy 2023-09-19 00:31:10 -04:00
parent 704cba5e97
commit bdf3e89863
No known key found for this signature in database
GPG Key ID: 19AA8270105E8EB4

View File

@ -344,7 +344,7 @@ namespace detail {
// A way to cast to U without "warning: useless cast to type"
template<typename U, typename V>
unsigned long long to(V v) {
U to(V v) {
return static_cast<U>(v);
}
}