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