Replaced throw() with noexcept and removed some unneeded ';'.

This commit is contained in:
Jens Breitbart
2014-12-20 15:06:36 +01:00
parent 7674bdb40a
commit 67b633880b
4 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ public:
explicit file_helper(bool auto_flush):
_fd(nullptr),
_auto_flush(auto_flush)
{};
{}
file_helper(const file_helper&) = delete;
file_helper& operator=(const file_helper&) = delete;