Fix serialization of atoms

This commit is contained in:
momo5502
2025-05-18 12:48:17 +02:00
parent bff6facd93
commit 86dbd11008
2 changed files with 10 additions and 6 deletions

View File

@@ -122,7 +122,7 @@ namespace utils
}
else
{
static_assert(!is_trivially_copyable, "Key must be trivially copyable or implement serializable!");
static_assert(is_trivially_copyable, "Key must be trivially copyable or implement serializable!");
std::abort();
}
}