From c536f39c21f7d7f6f6802e9423e7f0c1ffadff33 Mon Sep 17 00:00:00 2001 From: Gennadiy Rozental Date: Tue, 28 Sep 2004 17:27:25 +0000 Subject: [PATCH] unnesseary check removed [SVN r25465] --- test/token_iterator_test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/token_iterator_test.cpp b/test/token_iterator_test.cpp index fa746c4a..6488827c 100644 --- a/test/token_iterator_test.cpp +++ b/test/token_iterator_test.cpp @@ -44,12 +44,10 @@ void test_default_delim_policy() void test_wide() { -#if !defined(__GNUC__) || defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION) utf::wstring_token_iterator tit( L"\317\356\367\345\354\363 \341\373 \350 \355\345\362" ); wchar_t const* res[4] = { L"\317\356\367\345\354\363", L"\341\373", L"\350", L"\355\345\362" }; BOOST_CHECK_EQUAL_COLLECTIONS( tit, wsti_end, res ); -#endif } //____________________________________________________________________________// @@ -195,6 +193,9 @@ init_unit_test_suite( int argc, char* argv[] ) // History : // // $Log$ +// Revision 1.3 2004/09/28 17:27:25 rogeeff +// unnesseary check removed +// // Revision 1.2 2004/09/27 08:39:21 rogeeff // msvc/gcc workarounds //