diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-12-14 14:10:17 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-12-14 14:10:17 +0300 |
commit | 831347ba47409f64baea7e663d611d016f3a9dd0 (patch) | |
tree | 1d6667614bb2fdc4241b6995f37159d23914375b /mod/diagnostics.hxx | |
parent | cfe9aa117feb5428f128027e40227ad3e443809a (diff) |
Add noexcept to move constructors and move assignment operators
Diffstat (limited to 'mod/diagnostics.hxx')
-rw-r--r-- | mod/diagnostics.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/diagnostics.hxx b/mod/diagnostics.hxx index 37ab25e..f83e1de 100644 --- a/mod/diagnostics.hxx +++ b/mod/diagnostics.hxx @@ -109,7 +109,7 @@ namespace brep uncaught_ (r.uncaught_), #endif data_ (move (r.data_)), - os_ (move (r.os_)), + os_ (move (r.os_)), // Note: can throw. epilogue_ (r.epilogue_) { r.data_.clear (); // Empty. |