summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/Boost/src/boost/type_traits/msvc')
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_all_extents.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_bounds.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_const.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_cv.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_extent.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_pointer.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_reference.hpp2
-rw-r--r--3rdParty/Boost/src/boost/type_traits/msvc/remove_volatile.hpp2
8 files changed, 8 insertions, 8 deletions
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_all_extents.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_all_extents.hpp
index 3517132..25c0edf 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_all_extents.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_all_extents.hpp
@@ -36,7 +36,7 @@ namespace boost {
template<typename T>
struct remove_all_extents {
- typedef typename detail::remove_all_extents_impl_typeof<
+ typedef typename boost::detail::remove_all_extents_impl_typeof<
boost::is_array<T>::value
>::template inner<T,remove_all_extents<T> >::type type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,remove_all_extents,T)
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_bounds.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_bounds.hpp
index 12a9b05..4b23b35 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_bounds.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_bounds.hpp
@@ -32,7 +32,7 @@ namespace boost {
template<typename T>
struct remove_bounds {
- typedef typename detail::remove_bounds_impl_typeof<
+ typedef typename boost::detail::remove_bounds_impl_typeof<
boost::is_array<T>::value
>::template inner<T,remove_bounds<T> >::type type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,remove_bounds,T)
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_const.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_const.hpp
index 5395e80..d370754 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_const.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_const.hpp
@@ -124,7 +124,7 @@ namespace boost {
template<typename T>
struct remove_const {
- typedef detail::remove_const_impl_typeof<
+ typedef boost::detail::remove_const_impl_typeof<
boost::is_pointer<T>::value,
boost::is_array<T>::value,
boost::is_const<T>::value,
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_cv.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_cv.hpp
index c7b0379..9fbf8b8 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_cv.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_cv.hpp
@@ -171,7 +171,7 @@ namespace boost {
template<typename T>
struct remove_cv {
- typedef detail::remove_cv_impl_typeof<
+ typedef boost::detail::remove_cv_impl_typeof<
boost::is_pointer<T>::value,
boost::is_array<T>::value,
boost::is_const<T>::value,
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_extent.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_extent.hpp
index f87ec41..c5a59ef 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_extent.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_extent.hpp
@@ -32,7 +32,7 @@ namespace boost {
template<typename T>
struct remove_extent {
- typedef typename detail::remove_extent_impl_typeof<
+ typedef typename boost::detail::remove_extent_impl_typeof<
boost::is_array<T>::value
>::template inner<T,remove_extent<T> >::type type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,remove_extent,T)
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_pointer.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_pointer.hpp
index 8b9b0d4..ec847f9 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_pointer.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_pointer.hpp
@@ -32,7 +32,7 @@ namespace boost {
template<typename T>
struct remove_pointer {
- typedef typename detail::remove_pointer_impl_typeof<
+ typedef typename boost::detail::remove_pointer_impl_typeof<
boost::is_pointer<T>::value
>::template inner<T,remove_pointer<T> >::type type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,remove_pointer,T)
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_reference.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_reference.hpp
index 367d352..f8a77d4 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_reference.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_reference.hpp
@@ -32,7 +32,7 @@ namespace boost {
template<typename T>
struct remove_reference {
- typedef typename detail::remove_reference_impl_typeof<
+ typedef typename boost::detail::remove_reference_impl_typeof<
boost::is_reference<T>::value
>::template inner<T,remove_reference<T> >::type type;
BOOST_MPL_AUX_LAMBDA_SUPPORT(1,remove_reference,T)
diff --git a/3rdParty/Boost/src/boost/type_traits/msvc/remove_volatile.hpp b/3rdParty/Boost/src/boost/type_traits/msvc/remove_volatile.hpp
index 3759f2a..6f9259c 100644
--- a/3rdParty/Boost/src/boost/type_traits/msvc/remove_volatile.hpp
+++ b/3rdParty/Boost/src/boost/type_traits/msvc/remove_volatile.hpp
@@ -124,7 +124,7 @@ namespace boost {
template<typename T>
struct remove_volatile {
- typedef detail::remove_volatile_impl_typeof<
+ typedef boost::detail::remove_volatile_impl_typeof<
boost::is_pointer<T>::value,
boost::is_array<T>::value,
boost::is_const<T>::value,