diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-06-18 09:15:25 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-06-18 09:15:25 +0200 |
commit | c81edfa06c1c77f9cf12c967a54fbb314b179fee (patch) | |
tree | 5bca2eb337c37c0f162000ed26b4022840c47154 | |
parent | 1e73b8dcab0a44b3357ba8070a1ae13d7323e83d (diff) |
Add workaround for VC++ lookup bug
-rw-r--r-- | odb/polymorphic-map.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/polymorphic-map.hxx b/odb/polymorphic-map.hxx index 9c18d33..c3c1374 100644 --- a/odb/polymorphic-map.hxx +++ b/odb/polymorphic-map.hxx @@ -41,7 +41,7 @@ namespace odb typedef std::map<const std::type_info*, const info_type*, - details::type_info_comparator> + odb::details::type_info_comparator> // VC bug. type_map; struct discriminator_comparator |