From 8e5040a5055db522d29cf10e5c072cf75615a516 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 12 Aug 2025 00:15:03 -0500 Subject: [PATCH] bugfix: missed #pragma once --- xo-object/include/xo/object/Collection.hpp | 2 ++ xo-object/include/xo/object/Integer.hpp | 2 ++ xo-object/include/xo/object/List.hpp | 2 ++ xo-object/include/xo/object/Number.hpp | 2 ++ xo-object/include/xo/object/Numeric.hpp | 2 ++ xo-object/include/xo/object/Scalar.hpp | 2 ++ xo-object/include/xo/object/Sequence.hpp | 2 ++ 7 files changed, 14 insertions(+) diff --git a/xo-object/include/xo/object/Collection.hpp b/xo-object/include/xo/object/Collection.hpp index 409af485..0d6216eb 100644 --- a/xo-object/include/xo/object/Collection.hpp +++ b/xo-object/include/xo/object/Collection.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "xo/alloc/Object.hpp" namespace xo { diff --git a/xo-object/include/xo/object/Integer.hpp b/xo-object/include/xo/object/Integer.hpp index f9eb5cc2..05193023 100644 --- a/xo-object/include/xo/object/Integer.hpp +++ b/xo-object/include/xo/object/Integer.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "Number.hpp" namespace xo { diff --git a/xo-object/include/xo/object/List.hpp b/xo-object/include/xo/object/List.hpp index 35b2cec9..6272d0a2 100644 --- a/xo-object/include/xo/object/List.hpp +++ b/xo-object/include/xo/object/List.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "Sequence.hpp" namespace xo { diff --git a/xo-object/include/xo/object/Number.hpp b/xo-object/include/xo/object/Number.hpp index 3a27fcfe..c3513837 100644 --- a/xo-object/include/xo/object/Number.hpp +++ b/xo-object/include/xo/object/Number.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "Scalar.hpp" namespace xo { diff --git a/xo-object/include/xo/object/Numeric.hpp b/xo-object/include/xo/object/Numeric.hpp index 91b00f10..85bc4a0c 100644 --- a/xo-object/include/xo/object/Numeric.hpp +++ b/xo-object/include/xo/object/Numeric.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "xo/alloc/Object.hpp" namespace xo { diff --git a/xo-object/include/xo/object/Scalar.hpp b/xo-object/include/xo/object/Scalar.hpp index 77b12239..9bbc8aec 100644 --- a/xo-object/include/xo/object/Scalar.hpp +++ b/xo-object/include/xo/object/Scalar.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "Numeric.hpp" namespace xo { diff --git a/xo-object/include/xo/object/Sequence.hpp b/xo-object/include/xo/object/Sequence.hpp index 9eee334a..bbd2b0b7 100644 --- a/xo-object/include/xo/object/Sequence.hpp +++ b/xo-object/include/xo/object/Sequence.hpp @@ -3,6 +3,8 @@ * author: Roland Conybeare, Aug 2025 */ +#pragma once + #include "Collection.hpp" namespace xo {