From 31d0908b7474dfbd17d0971f9d2d8b88bc1257a1 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Fri, 20 Jul 2001 21:29:36 +0000 Subject: [PATCH] Add workaround for BOOST_NO_STDC_NAMESPACE [SVN r10681] --- iterators_test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/iterators_test.cpp b/iterators_test.cpp index b1d09c5..a5e39a4 100644 --- a/iterators_test.cpp +++ b/iterators_test.cpp @@ -26,6 +26,10 @@ #include // for std::string #include // for std::ostrstream +# ifdef BOOST_NO_STDC_NAMESPACE + namespace std { using ::strcmp; } +# endif + // Iterator test class template