Skip to content

Commit

Permalink
Update amalgamation file
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki authored and actions-user committed Nov 16, 2023
1 parent 04a32a8 commit 15cb53a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Distribution/LuaBridge/LuaBridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -2442,10 +2442,10 @@ struct TypeResult
{
}

TypeResult(const TypeResult&) noexcept(std::is_nothrow_copy_constructible_v<T>) = default;
TypeResult(TypeResult&&) noexcept(std::is_nothrow_move_constructible_v<T>) = default;
TypeResult& operator=(const TypeResult&) noexcept(std::is_nothrow_copy_assignable_v<T>) = default;
TypeResult& operator=(TypeResult&&) noexcept(std::is_nothrow_move_assignable_v<T>) = default;
TypeResult(const TypeResult&) = default;
TypeResult(TypeResult&&) = default;
TypeResult& operator=(const TypeResult&) = default;
TypeResult& operator=(TypeResult&&) = default;

explicit operator bool() const noexcept
{
Expand Down

0 comments on commit 15cb53a

Please sign in to comment.