Fix new clang warning

This commit is contained in:
2024-10-12 16:42:52 -07:00
parent 73f93edf49
commit 47fd811efc

View File

@@ -538,7 +538,7 @@ struct ReferenceImpl {
using Key = ConflictSet::Key; using Key = ConflictSet::Key;
inline Key operator"" _s(const char *str, size_t size) { inline Key operator""_s(const char *str, size_t size) {
return {reinterpret_cast<const uint8_t *>(str), int(size)}; return {reinterpret_cast<const uint8_t *>(str), int(size)};
} }