Commit ea54b21e authored by Florin Iucha's avatar Florin Iucha Committed by Victor Zverovich

Remove invalid noexcept annotation

buffered_file& operator=(buffered_file&& other) calls close which can
throw.
parent 9cbf4b08
...@@ -157,7 +157,7 @@ class buffered_file { ...@@ -157,7 +157,7 @@ class buffered_file {
other.file_ = nullptr; other.file_ = nullptr;
} }
buffered_file& operator=(buffered_file&& other) FMT_NOEXCEPT { buffered_file& operator=(buffered_file&& other) {
close(); close();
file_ = other.file_; file_ = other.file_;
other.file_ = nullptr; other.file_ = nullptr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment