From 9895d9349e57d0f22fab517e01cb9d6d4b0d2ad6 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Tue, 17 Mar 2026 22:45:05 -0400 Subject: [PATCH] xo-alloc2: tidy: delete dup .cpp --- src/gc/IGCObject_Any.cpp | 48 ---------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 src/gc/IGCObject_Any.cpp diff --git a/src/gc/IGCObject_Any.cpp b/src/gc/IGCObject_Any.cpp deleted file mode 100644 index 95c8cc8..0000000 --- a/src/gc/IGCObject_Any.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/** @file IGCObject_Any.cpp - * - **/ - -#include "detail/IGCObject_Any.hpp" -#include -#include - -namespace xo { -namespace mm { - -using xo::facet::DVariantPlaceholder; -using xo::facet::typeseq; -using xo::facet::valid_facet_implementation; - -void -IGCObject_Any::_fatal() -{ - /* control here on uninitialized IAllocator_Any. - * Initialized instance will have specific implementation type - */ - std::cerr << "fatal" - << ": attempt to call uninitialized" - << " IGCObject_Any method" - << std::endl; - std::terminate(); -} - -typeseq -IGCObject_Any::s_typeseq = typeseq::id(); - -bool -IGCObject_Any::_valid - = valid_facet_implementation(); - -// nonconst methods - -auto -IGCObject_Any::forward_children(Opaque, obj) const noexcept -> size_type -{ - _fatal(); -} - - -} /*namespace mm*/ -} /*namespace xo*/ - -/* end IGCObject_Any.cpp */