Compare commits

...

1 Commits

Author SHA1 Message Date
6abd8139f0 Fix clangd warnings 2025-05-20 22:25:49 -04:00

View File

@@ -3,11 +3,11 @@
#include "VersionedMap.h"
#include <inttypes.h>
inline weaselab::VersionedMap::Key operator"" _k(const char *str, size_t size) {
inline weaselab::VersionedMap::Key operator""_k(const char *str, size_t size) {
return {reinterpret_cast<const uint8_t *>(str), int(size)};
}
inline String operator"" _s(const char *str, size_t size) {
inline String operator""_s(const char *str, size_t size) {
return String{reinterpret_cast<const uint8_t *>(str), size};
}