Lift upstream sol::optional::emplace Clang 19 build fix

This commit is contained in:
Alexei Kotov 2025-03-11 20:34:04 +03:00
parent e5ad1cd214
commit ced142da92
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,5 @@
The code in this directory is copied from https://github.com/ThePhD/sol2.git (64096348465b980e2f1d0e5ba9cbeea8782e8f27)
Additional changes include cherry-picking upstream commit d805d027e0a0a7222e936926139f06e23828ce9f to fix compilation under Clang 19.
License: MIT

View File

@ -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.