mirror of
https://github.com/boostorg/smart_ptr.git
synced 2025-07-30 20:57:21 +02:00
Fixed a VC7 'regression' (pointers to volatile cannot be deleted)
[SVN r20977]
This commit is contained in:
@ -138,7 +138,7 @@ void pointer_constructor()
|
||||
{
|
||||
pc0_test(static_cast<int*>(0));
|
||||
|
||||
#if !defined(BOOST_MSVC) || (BOOST_MSVC > 1200)
|
||||
#if !defined(BOOST_MSVC) || (BOOST_MSVC > 1300)
|
||||
|
||||
pc0_test(static_cast<int const*>(0));
|
||||
pc0_test(static_cast<int volatile*>(0));
|
||||
|
Reference in New Issue
Block a user