aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-09-22 08:37:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-09-22 08:37:14 +0200
commitca72e8dd21e6bf060e6a4c2cf4e775533930780a (patch)
treedd07c7bf40a7eba90d753b0edc1333d01d3d06a1
parent5e8129bc2924abd1bfefb21598100bc519159fb6 (diff)
Workaround for VC91.6.0.a2
-rw-r--r--odb/qt/smart-ptr/pointer-traits.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/qt/smart-ptr/pointer-traits.hxx b/odb/qt/smart-ptr/pointer-traits.hxx
index 7c26a4b..0936955 100644
--- a/odb/qt/smart-ptr/pointer-traits.hxx
+++ b/odb/qt/smart-ptr/pointer-traits.hxx
@@ -28,7 +28,7 @@ namespace odb
typedef T element_type;
typedef QSharedPointer<element_type> pointer_type;
typedef QSharedPointer<const element_type> const_pointer_type;
- typedef typename details::meta::remove_const<element_type>::result
+ typedef typename odb::details::meta::remove_const<element_type>::result
unrestricted_element_type;
typedef QSharedPointer<unrestricted_element_type>
unrestricted_pointer_type;