From ecaa374ec46c2d60c4a4273e6e2b8d0d342af4c5 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 14 Dec 2022 19:52:19 +0300 Subject: Add noexcept to move constructors and move assignment operators --- odb/mssql/database.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'odb/mssql/database.hxx') diff --git a/odb/mssql/database.hxx b/odb/mssql/database.hxx index 8ca74f9..5367bc5 100644 --- a/odb/mssql/database.hxx +++ b/odb/mssql/database.hxx @@ -139,6 +139,9 @@ namespace odb // Move-constructible but not move-assignable. // + // Note: noexcept is not specified since odb::database(odb::database&&) + // can throw. + // #ifdef ODB_CXX11 database (database&&); #endif -- cgit v1.1