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
commite0e3df1c8fd9c5b21fc821ab4da1b0308168758d (patch)
tree9e5c726394002d7e9822ee777e6e083a5fdc0efc
parentaa1620524e382bebf7bb5f80ebb2ab80984801fa (diff)
Workaround for VC91.6.0.a2
-rw-r--r--odb/boost/smart-ptr/pointer-traits.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/odb/boost/smart-ptr/pointer-traits.hxx b/odb/boost/smart-ptr/pointer-traits.hxx
index af31975..d737502 100644
--- a/odb/boost/smart-ptr/pointer-traits.hxx
+++ b/odb/boost/smart-ptr/pointer-traits.hxx
@@ -28,7 +28,7 @@ namespace odb
typedef T element_type;
typedef ::boost::shared_ptr<element_type> pointer_type;
typedef ::boost::shared_ptr<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 ::boost::shared_ptr<unrestricted_element_type>
unrestricted_pointer_type;