From de0c863e5959505db314818f3d2e0565fb5a0a46 Mon Sep 17 00:00:00 2001 From: "Dr. Patrick Urbanke" Date: Sat, 22 Mar 2025 14:58:12 +0100 Subject: [PATCH] Added namespace --- include/sqlgen/PrimaryKey.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sqlgen/PrimaryKey.hpp b/include/sqlgen/PrimaryKey.hpp index 9e4816a..295aaca 100644 --- a/include/sqlgen/PrimaryKey.hpp +++ b/include/sqlgen/PrimaryKey.hpp @@ -9,7 +9,8 @@ template struct PrimaryKey { using ReflectionType = T; - static_assert(!is_nullable_v, "A primary key cannot be nullable."); + static_assert(!parsing::is_nullable_v, + "A primary key cannot be nullable."); PrimaryKey() : value_(0) {}