[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#597090: libstdc++6-4.5-dev: several STL classes implicitly add to the exception specification of containing classes' destructors



Hi,

actually attaching the file helps.

   Simon
#include <string>

class interface
{
public:
    virtual ~interface(void) throw() { }
};

class implementation :
    public interface
{
    std::string somedata;
};

Reply to: