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/traversal/template.cxx | 53 ---------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 odb/traversal/template.cxx (limited to 'odb/traversal/template.cxx') diff --git a/odb/traversal/template.cxx b/odb/traversal/template.cxx deleted file mode 100644 index 21a846d..0000000 --- a/odb/traversal/template.cxx +++ /dev/null @@ -1,53 +0,0 @@ -// file : odb/traversal/template.cxx -// license : GNU GPL v3; see accompanying LICENSE file - -#include - -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 ()); - } -} -- cgit v1.1