From 5e26f475357e83d10b288e25298ffc59f1f70834 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 27 Jul 2002 11:47:04 +0000 Subject: [PATCH] Fixed test case for VC7.0 [SVN r14627] --- integer_traits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer_traits_test.cpp b/integer_traits_test.cpp index d0127d6..1548bdc 100644 --- a/integer_traits_test.cpp +++ b/integer_traits_test.cpp @@ -35,7 +35,7 @@ * Therefore, avoid explicit function template instantiations. */ -#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1200) +#if defined(BOOST_MSVC) && (BOOST_MSVC <= 1300) template inline T make_char_numeric_for_streaming(T x) { return x; } namespace fix{ inline int make_char_numeric_for_streaming(char c) { return c; }