// file : cli/semantics/expression.cxx // author : Boris Kolpackov // license : MIT; see accompanying LICENSE file #include #include namespace semantics { // type info // namespace { struct init { init () { using compiler::type_info; type_info ti (typeid (expression)); ti.add_base (typeid (node)); insert (ti); } } init_; } }