diff --git a/test/map.cpp b/test/map.cpp index 87c2e1f..2f1a59a 100644 --- a/test/map.cpp +++ b/test/map.cpp @@ -56,7 +56,7 @@ MPL_TEST_CASE() typedef begin::type first; typedef end::type last; - MPL_ASSERT(( is_same< first::type,mpl::pair > )); + MPL_ASSERT(( is_same< deref::type,mpl::pair > )); MPL_ASSERT(( is_same< next::type,last > )); typedef insert >::type m2; @@ -81,9 +81,9 @@ MPL_TEST_CASE() typedef begin::type first2; typedef end::type last2; - MPL_ASSERT(( is_same > )); + MPL_ASSERT(( is_same::type,mpl::pair > )); typedef next::type iter; - MPL_ASSERT(( is_same > )); + MPL_ASSERT(( is_same::type,mpl::pair > )); MPL_ASSERT(( is_same< next::type,last2 > )); typedef insert >::type s2_1;