From 823026b58211a4166de06ac243d978dcb9930271 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 22 Jan 2024 15:58:08 +0300 Subject: Turn odb repository into muti-package repository Also remove the autoconf/make-based build system. --- odb/semantics/union.cxx | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 odb/semantics/union.cxx (limited to 'odb/semantics/union.cxx') diff --git a/odb/semantics/union.cxx b/odb/semantics/union.cxx deleted file mode 100644 index 007ef57..0000000 --- a/odb/semantics/union.cxx +++ /dev/null @@ -1,36 +0,0 @@ -// file : odb/semantics/union.cxx -// license : GNU GPL v3; see accompanying LICENSE file - -#include -#include - -namespace semantics -{ - union_:: - union_ (path const& file, size_t line, size_t column, tree tn) - : node (file, line, column, tn) - { - } - - // type info - // - namespace - { - struct init - { - init () - { - using compiler::type_info; - - // union_ - // - { - type_info ti (typeid (union_)); - ti.add_base (typeid (type)); - ti.add_base (typeid (scope)); - insert (ti); - } - } - } init_; - } -} -- cgit v1.1