fix dereference

[SVN r26112]
This commit is contained in:
Aleksey Gurtovoy
2004-11-04 12:40:53 +00:00
parent 061681c440
commit a996d1749c

View File

@@ -46,7 +46,7 @@ MPL_TEST_CASE()
typedef begin<s>::type first;
typedef end<s>::type last;
MPL_ASSERT(( is_same< first::type, int > ));
MPL_ASSERT(( is_same< deref<first>::type, int > ));
MPL_ASSERT(( is_same< next<first>::type, last > ));
typedef s_unmask<char,s> s2;