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:   "???"
This commit is contained in:
Roland Conybeare 2026-06-06 22:10:01 -04:00
commit a33f75f6f4
167 changed files with 10695 additions and 0 deletions

View file

@ -0,0 +1,42 @@
/** @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 */