Merge branch 'main' of github.com:rconybea/xo-umbrella2

This commit is contained in:
Roland Conybeare 2026-01-06 10:39:22 -05:00
commit 4555d55eef
2 changed files with 3 additions and 1 deletions

View file

@ -6,7 +6,7 @@
#pragma once
#include "facet_implementation.hpp"
#include "typeseq.hpp"
#include <xo/reflectutil/typeseq.hpp>
#include <new>
#include <cstring>
#include <cstddef>
@ -64,6 +64,7 @@ namespace xo {
using DataType = DRepr;
using DataPtr = DRepr*;
using Opaque = void *;
using typeseq = xo::reflect::typeseq;
/* required for vtable swapping to work */
//static_assert(std::is_trivially_copyable_v<AFacet>);

View file

@ -8,6 +8,7 @@ set(UTEST_SRCS
if (ENABLE_TESTING)
xo_add_utest_executable(${UTEST_EXE} ${UTEST_SRCS})
xo_self_dependency(${UTEST_EXE} xo_arena)
xo_external_target_dependency(${UTEST_EXE} Catch2 Catch2::Catch2)
endif()