summaryrefslogtreecommitdiff
path: root/boost/fusion/support/is_sequence.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/fusion/support/is_sequence.hpp')
-rw-r--r--boost/fusion/support/is_sequence.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/fusion/support/is_sequence.hpp b/boost/fusion/support/is_sequence.hpp
index 8b5821042f..6b9b211858 100644
--- a/boost/fusion/support/is_sequence.hpp
+++ b/boost/fusion/support/is_sequence.hpp
@@ -32,7 +32,7 @@ namespace boost { namespace fusion
{
template <typename Sequence>
struct apply
- : is_convertible<Sequence, detail::from_sequence_convertible_type>
+ : is_convertible<Sequence, fusion::detail::from_sequence_convertible_type>
{};
};
@@ -69,7 +69,7 @@ namespace boost { namespace fusion
template <typename Sequence, typename Enable = void>
struct is_native_fusion_sequence
- : is_convertible<Sequence, detail::from_sequence_convertible_type>
+ : is_convertible<Sequence, fusion::detail::from_sequence_convertible_type>
{};
}
}}