Fix: apply workaround to disable msvc warning 4265.

[SVN r48248]
This commit is contained in:
Jürgen Hunold
2008-08-20 09:29:17 +00:00
parent 8c89aef48e
commit e05771c0c4
2 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,9 @@ boost
#if BOOST_WORKAROUND( __GNUC__, BOOST_TESTED_AT(4) )
virtual //Disable bogus GCC warning.
#endif
#if BOOST_WORKAROUND( BOOST_MSVC, BOOST_TESTED_AT(1500) )
virtual //Disable bogus msvc warning.
#endif
~cloning_base() throw()
{

View File

@ -38,6 +38,9 @@ boost
#if BOOST_WORKAROUND( __GNUC__, BOOST_TESTED_AT(4) )
virtual //Disable bogus GCC warning.
#endif
#if BOOST_WORKAROUND( BOOST_MSVC, BOOST_TESTED_AT(1500) )
virtual //Disable bogus msvc warning.
#endif
~counted_base() throw()
{