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:
parent
91b119cdef
commit
a33f75f6f4
167 changed files with 10695 additions and 0 deletions
42
xo-expression2/src/expression2/ISymbolTable_Any.cpp
Normal file
42
xo-expression2/src/expression2/ISymbolTable_Any.cpp
Normal 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 */
|
||||
Loading…
Add table
Add a link
Reference in a new issue