diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-06-11 18:15:42 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-06-11 18:15:42 +0200 |
commit | c47bbc6d4b584dfe5b1445c50bada6b687a0c907 (patch) | |
tree | b76acf89371c33dfcc6b2f5b9affee9631902769 | |
parent | fb2519f6f9d79c7626a0281ad24925b4976cd81d (diff) |
Qualify name to work around bogus VC++ ambiguities
-rw-r--r-- | odb/polymorphic-info.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/polymorphic-info.hxx b/odb/polymorphic-info.hxx index 18a12a2..2011133 100644 --- a/odb/polymorphic-info.hxx +++ b/odb/polymorphic-info.hxx @@ -60,9 +60,9 @@ namespace odb typedef pointer_type (*create_function) (); typedef bool (*dispatch_function) ( - call_type, database&, const root_type*, const void* arg); + call_type, odb::database&, const root_type*, const void* arg); typedef void (*delayed_loader_function) ( - database&, const id_type&, root_type&); + odb::database&, const id_type&, root_type&); public: polymorphic_concrete_info (const std::type_info& t, |