aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2022-12-14 14:10:17 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2022-12-14 14:10:17 +0300
commit831347ba47409f64baea7e663d611d016f3a9dd0 (patch)
tree1d6667614bb2fdc4241b6995f37159d23914375b /mod
parentcfe9aa117feb5428f128027e40227ad3e443809a (diff)
Add noexcept to move constructors and move assignment operators
Diffstat (limited to 'mod')
-rw-r--r--mod/diagnostics.hxx2
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.