Added namespace

This commit is contained in:
Dr. Patrick Urbanke
2025-03-22 14:58:12 +01:00
parent 3b2394c3fe
commit de0c863e59

View File

@@ -9,7 +9,8 @@ template <class T>
struct PrimaryKey {
using ReflectionType = T;
static_assert(!is_nullable_v<T>, "A primary key cannot be nullable.");
static_assert(!parsing::is_nullable_v<T>,
"A primary key cannot be nullable.");
PrimaryKey() : value_(0) {}