xo-umbrella2/xo-expression2/src/expression2/ISymbolTable_Any.cpp
Roland Conybeare a33f75f6f4 git subrepo clone git@github.com:Rconybea/xo-expression2.git xo-expression2
subrepo:
  subdir:   "xo-expression2"
  merged:   "9823ce36"
upstream:
  origin:   "git@github.com:Rconybea/xo-expression2.git"
  branch:   "main"
  commit:   "9823ce36"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:10:01 -04:00

42 lines
863 B
C++

/** @file ISymbolTable_Any.cpp
*
**/
#include "symtab/ISymbolTable_Any.hpp"
#include <iostream>
#include <exception>
namespace xo {
namespace scm {
using xo::facet::DVariantPlaceholder;
using xo::facet::typeseq;
using xo::facet::valid_facet_implementation;
void
ISymbolTable_Any::_fatal()
{
/* control here on uninitialized IAllocator_Any.
* Initialized instance will have specific implementation type
*/
std::cerr << "fatal"
<< ": attempt to call uninitialized"
<< " ISymbolTable_Any method"
<< std::endl;
std::terminate();
}
typeseq
ISymbolTable_Any::s_typeseq = typeseq::id<DVariantPlaceholder>();
bool
ISymbolTable_Any::_valid
= valid_facet_implementation<ASymbolTable, ISymbolTable_Any>();
// nonconst methods
} /*namespace scm*/
} /*namespace xo*/
/* end ISymbolTable_Any.cpp */