From 831347ba47409f64baea7e663d611d016f3a9dd0 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 14 Dec 2022 14:10:17 +0300 Subject: Add noexcept to move constructors and move assignment operators --- mod/diagnostics.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.1