From be97326d67365e16175cc599e23348feaf80e0fe Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 8 Oct 2012 16:09:07 +0200 Subject: Ground work for multi-database support All generated code now includes database id. The database-specific database class interface has been updated to include all the database operations. The database-specific tests now use this interface. --- odb/polymorphic-map.ixx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'odb/polymorphic-map.ixx') diff --git a/odb/polymorphic-map.ixx b/odb/polymorphic-map.ixx index 4dbd174..546d997 100644 --- a/odb/polymorphic-map.ixx +++ b/odb/polymorphic-map.ixx @@ -4,17 +4,17 @@ namespace odb { - template - inline polymorphic_entry:: + template + inline polymorphic_entry:: polymorphic_entry () { - polymorphic_entry_impl::insert (object_traits::info); + polymorphic_entry_impl::insert (object_traits::info); } - template - inline polymorphic_entry:: + template + inline polymorphic_entry:: ~polymorphic_entry () { - polymorphic_entry_impl::erase (object_traits::info); + polymorphic_entry_impl::erase (object_traits::info); } } -- cgit v1.1