summaryrefslogtreecommitdiff
path: root/odb/semantics/union-template.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/semantics/union-template.cxx')
-rw-r--r--odb/semantics/union-template.cxx54
1 files changed, 0 insertions, 54 deletions
diff --git a/odb/semantics/union-template.cxx b/odb/semantics/union-template.cxx
deleted file mode 100644
index f2c3f94..0000000
--- a/odb/semantics/union-template.cxx
+++ /dev/null
@@ -1,54 +0,0 @@
-// file : odb/semantics/union-template.cxx
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#include <cutl/compiler/type-info.hxx>
-#include <odb/semantics/union-template.hxx>
-
-namespace semantics
-{
- union_template::
- union_template (path const& file, size_t line, size_t column, tree tn)
- : node (file, line, column, tn)
- {
- }
-
- union_instantiation::
- union_instantiation (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_template
- //
- {
- type_info ti (typeid (union_template));
- ti.add_base (typeid (type_template));
- ti.add_base (typeid (scope));
- insert (ti);
- }
-
- // union_instantiation
- //
- {
- type_info ti (typeid (union_instantiation));
- ti.add_base (typeid (union_));
- ti.add_base (typeid (type_instantiation));
- insert (ti);
- }
- }
- } init_;
- }
-}