Skip to content

Commit

Permalink
fix emplace
Browse files Browse the repository at this point in the history
  • Loading branch information
paulocoutinhox authored and ThePhD committed Jul 13, 2024
1 parent e8e122e commit d805d02
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/sol/optional_implementation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2191,7 +2191,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 d805d02

Please sign in to comment.