mirror of
https://github.com/boostorg/exception.git
synced 2025-07-16 05:52:14 +02:00
Disabled bogus GCC warnings.
[SVN r45082]
This commit is contained in:
@ -23,6 +23,10 @@ boost
|
||||
|
||||
protected:
|
||||
|
||||
#ifdef __GNUC__
|
||||
virtual //Disable bogus GCC warning.
|
||||
//Would someone at GCC finally get the protected, non-virtual destructor approach?
|
||||
#endif
|
||||
~cloning_base() throw()
|
||||
{
|
||||
}
|
||||
|
@ -34,6 +34,10 @@ boost
|
||||
|
||||
protected:
|
||||
|
||||
#ifdef __GNUC__
|
||||
virtual //Disable bogus GCC warning.
|
||||
//Would someone at GCC finally get the protected, non-virtual destructor approach?
|
||||
#endif
|
||||
~counted_base() throw()
|
||||
{
|
||||
}
|
||||
|
@ -39,6 +39,10 @@ boost
|
||||
|
||||
protected:
|
||||
|
||||
#ifdef __GNUC__
|
||||
virtual //Disable bogus GCC warning.
|
||||
//Would someone at GCC finally get the protected, non-virtual destructor approach?
|
||||
#endif
|
||||
~error_info_base()
|
||||
{
|
||||
}
|
||||
|
Reference in New Issue
Block a user