From 61ddb8140e4a79f728a51bec9589d85b08328031 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 6 Oct 2023 18:02:22 -0400 Subject: [PATCH] refcnt: update after inserting xo into include path --- include/xo/reflect/Reflect.hpp | 2 +- include/xo/reflect/SelfTagging.hpp | 2 +- include/xo/reflect/TaggedRcptr.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/xo/reflect/Reflect.hpp b/include/xo/reflect/Reflect.hpp index 478078ad..89a75374 100644 --- a/include/xo/reflect/Reflect.hpp +++ b/include/xo/reflect/Reflect.hpp @@ -11,7 +11,7 @@ #include "pointer/PointerTdx.hpp" #include "vector/VectorTdx.hpp" #include "struct/StructTdx.hpp" -#include "refcnt/Refcounted.hpp" +#include "xo/refcnt/Refcounted.hpp" #include #include #include // for std::pair<> diff --git a/include/xo/reflect/SelfTagging.hpp b/include/xo/reflect/SelfTagging.hpp index e188b5c2..b41d4ce3 100644 --- a/include/xo/reflect/SelfTagging.hpp +++ b/include/xo/reflect/SelfTagging.hpp @@ -5,7 +5,7 @@ #pragma once -#include "Refcounted.hpp" +#include "xo/refcnt/Refcounted.hpp" #include "TypeDescr.hpp" #include "TaggedRcptr.hpp" diff --git a/include/xo/reflect/TaggedRcptr.hpp b/include/xo/reflect/TaggedRcptr.hpp index e31cffb3..3e06af64 100644 --- a/include/xo/reflect/TaggedRcptr.hpp +++ b/include/xo/reflect/TaggedRcptr.hpp @@ -8,7 +8,7 @@ #include "TaggedPtr.hpp" // causes #include cycle, reflect/Reflect.hpp includes this header //#include "reflect/Reflect.hpp" -#include "refcnt/Refcounted.hpp" +#include "xo/refcnt/Refcounted.hpp" namespace xo { namespace reflect {