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: "???"
42 lines
863 B
C++
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 */
|