- added throw() to streambuf destructor overrides (#182)
This commit is contained in:
Phil Nash 2013-07-02 08:49:29 +01:00
parent 3907559896
commit ad7445d33c
7 changed files with 13 additions and 13 deletions

View file

@ -27,7 +27,7 @@ namespace Catch {
setp( data, data + sizeof(data) );
}
~StreamBufImpl() {
~StreamBufImpl() throw() {
sync();
}