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:21:51 +0200 |
commit | 743d8476202995dd69866fb7edd316bcd2b342cf (patch) | |
tree | 34a3300512e9aba327f6a594915813ac9a6882a2 | |
parent | a77412ed3603c86e3a5043e678e7e8abb09b1fc8 (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, |