From 9b75e9190973afe7a6c34e5f84f6f4611ce72d05 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 17 May 2005 10:31:53 +0000 Subject: [PATCH] Better spell BOOST_MSVC correctly! [SVN r28985] --- test/regress/test_locale.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/regress/test_locale.cpp b/test/regress/test_locale.cpp index 703e76d5..a7b8e555 100644 --- a/test/regress/test_locale.cpp +++ b/test/regress/test_locale.cpp @@ -156,7 +156,7 @@ void test_en_locale() // VC6 seems to have problems with std::setlocale, I've never // gotten to the bottem of this as the program runs fine under the // debugger, but hangs when run from bjam: -#if !BOOST_WORKAROUND(BOOST_MSVC_, <=1200) && !(defined(__ICL) && defined(_MSC_VER) && (_MSC_VER == 1200)) +#if !BOOST_WORKAROUND(BOOST_MSVC, <=1200) && !(defined(__ICL) && defined(_MSC_VER) && (_MSC_VER == 1200)) test_en_locale("en_US", 0x09 | 0x01 << 10); test_en_locale("en_UK", 0x09 | 0x02 << 10); test_en_locale("en", 0x09);