Skip to content

Commit

Permalink
Sol2 patch for clang 19
Browse files Browse the repository at this point in the history
See #2306
  • Loading branch information
jwrober committed Oct 26, 2024
1 parent a392316 commit 138877d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dependencies/sol2/sol/sol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6752,7 +6752,8 @@ namespace sol {
static_assert(std::is_constructible<T, Args&&...>::value, "T must be constructible with Args");

*this = nullopt;
this->construct(std::forward<Args>(args)...);
new (static_cast<void*>(this)) optional(std::in_place, std::forward<Args>(args)...);
return **this;
}

/// Swaps this optional with the other.
Expand Down

0 comments on commit 138877d

Please sign in to comment.