summaryrefslogtreecommitdiff
path: root/odb/traversal/union-template.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/traversal/union-template.cxx')
-rw-r--r--odb/traversal/union-template.cxx27
1 files changed, 0 insertions, 27 deletions
diff --git a/odb/traversal/union-template.cxx b/odb/traversal/union-template.cxx
deleted file mode 100644
index 5275541..0000000
--- a/odb/traversal/union-template.cxx
+++ /dev/null
@@ -1,27 +0,0 @@
-// file : odb/traversal/union-template.cxx
-// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#include <odb/traversal/union-template.hxx>
-
-namespace traversal
-{
- void union_instantiation::
- traverse (type& u)
- {
- instantiates (u);
- names (u);
- }
-
- void union_instantiation::
- instantiates (type& u)
- {
- instantiates (u, *this);
- }
-
- void union_instantiation::
- instantiates (type& u, edge_dispatcher& d)
- {
- d.dispatch (u.instantiates ());
- }
-}