summaryrefslogtreecommitdiff
path: root/odb/semantics/union.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/union.cxx')
-rw-r--r--odb/semantics/union.cxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/odb/semantics/union.cxx b/odb/semantics/union.cxx
deleted file mode 100644
index 980dfa4..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 <cutl/compiler/type-info.hxx>
-#include <odb/semantics/union.hxx>
-
-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_;
- }
-}