refs #624 Remove noexcept from destructors, which are implicitly noexcept.

This commit is contained in:
Mathew Sutcliffe
2016-03-19 21:07:56 +00:00
parent c26a6fef8b
commit b33781717e
6 changed files with 8 additions and 8 deletions

View File

@@ -345,7 +345,7 @@ namespace BlackMisc
{
public:
//! Destructor. Applies deferred changes.
~BatchGuard() Q_DECL_NOEXCEPT;
~BatchGuard();
//! Deleted copy constructor. Class is move-only.
BatchGuard(const BatchGuard &) = delete;