initial wasm support

This commit is contained in:
lizzie
2026-06-08 23:30:08 +00:00
parent fbb05fc5d5
commit 9e651d9460
25 changed files with 522 additions and 80 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ struct CbufWordKey {
struct CbufWordKeyHash {
constexpr size_t operator()(const CbufWordKey& k) const noexcept {
return (size_t(k.index) << 32) ^ k.offset;
return size_t((u64(k.index) << 32) ^ u64(k.offset));
}
};