From 15cb53a64d81be89313ad94c010b17f3296517a8 Mon Sep 17 00:00:00 2001 From: kunitoki Date: Thu, 16 Nov 2023 23:15:49 +0000 Subject: [PATCH] Update amalgamation file --- Distribution/LuaBridge/LuaBridge.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Distribution/LuaBridge/LuaBridge.h b/Distribution/LuaBridge/LuaBridge.h index bfc9ee0b..fd8e8f03 100644 --- a/Distribution/LuaBridge/LuaBridge.h +++ b/Distribution/LuaBridge/LuaBridge.h @@ -2442,10 +2442,10 @@ struct TypeResult { } - TypeResult(const TypeResult&) noexcept(std::is_nothrow_copy_constructible_v) = default; - TypeResult(TypeResult&&) noexcept(std::is_nothrow_move_constructible_v) = default; - TypeResult& operator=(const TypeResult&) noexcept(std::is_nothrow_copy_assignable_v) = default; - TypeResult& operator=(TypeResult&&) noexcept(std::is_nothrow_move_assignable_v) = default; + TypeResult(const TypeResult&) = default; + TypeResult(TypeResult&&) = default; + TypeResult& operator=(const TypeResult&) = default; + TypeResult& operator=(TypeResult&&) = default; explicit operator bool() const noexcept {