[test] regression with latest change to libs/test/src/test_tools.cpp

FYI, latest changes to the aforementioned file seem to break things for msvc-stlport, as shown for instance at: http://tinyurl.com/6br7t [format] http://tinyurl.com/6xt58 [minmax] http://tinyurl.com/48hd6 [multi_index] Joaquín M´López Muñoz Telefónica, Investigación y Desarrollo

FYI, latest changes to the aforementioned file seem to break things for msvc-stlport, as shown for instance at:
Dave tried to use "using namespace std" solution. It's already fixed in cvs. Gennadiy.

Gennadiy Rozental wrote:
FYI, latest changes to the aforementioned file seem to break things for msvc-stlport, as shown for instance at:
Dave tried to use "using namespace std" solution. It's already fixed in cvs.
BTW, you need to special case for msvc-stlport to avoid ambiguity. Here's how I do it: #if defined(BOOST_MSVC) && (BOOST_MSVC < 1300) #define BOOST_SPIRIT_USING_STD #else #define BOOST_SPIRIT_USING_STD using namespace std #endif Which works with or without stl-port. Tested! Cheers, -- Joel de Guzman http://www.boost-consulting.com http://spirit.sf.net
participants (3)
-
Gennadiy Rozental
-
JOAQUIN LOPEZ MU?Z
-
Joel de Guzman