From 09c8685181e0a33c0c54cee60c06bb6eac22dfee Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 27 Nov 2003 16:58:23 +0000 Subject: [PATCH] Fixed a VC7 'regression' (pointers to volatile cannot be deleted) [SVN r20977] --- test/shared_ptr_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/shared_ptr_test.cpp b/test/shared_ptr_test.cpp index 3e36c24..a129613 100644 --- a/test/shared_ptr_test.cpp +++ b/test/shared_ptr_test.cpp @@ -138,7 +138,7 @@ void pointer_constructor() { pc0_test(static_cast(0)); -#if !defined(BOOST_MSVC) || (BOOST_MSVC > 1200) +#if !defined(BOOST_MSVC) || (BOOST_MSVC > 1300) pc0_test(static_cast(0)); pc0_test(static_cast(0));