/** @file IGCObject_Any.cpp * * @author Roland Conybeare, Dec 2025 **/ #include "detail/IGCObject_Any.hpp" #include namespace xo { using xo::facet::DVariantPlaceholder; using xo::facet::typeseq; using xo::facet::valid_facet_implementation; namespace mm { void IGCObject_Any::_fatal() { std::cerr << "fatal" << ": attempt to call uninitialized" << " IGCObject_Any method" << std::endl; std::terminate(); } int32_t IGCObject_Any::s_typeseq = typeseq::id(); bool IGCObject_Any::_valid = valid_facet_implementation(); } /*namespace mm*/ } /*namespace xo*/ /* end IGCObject_Any.cpp */