From e09f0f48b15106ac4048a28eb699e3d4cf43020c Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 14 Dec 2022 20:47:16 +0300 Subject: Add noexcept to move constructors and move assignment operators --- odb/sqlite/database.hxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/odb/sqlite/database.hxx b/odb/sqlite/database.hxx index e7579d6..e1e62cc 100644 --- a/odb/sqlite/database.hxx +++ b/odb/sqlite/database.hxx @@ -152,6 +152,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