mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -05:00
fix mac Promise build
This commit is contained in:
parent
62480cc3e8
commit
6aa60327a3
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ namespace geode {
|
|||
}
|
||||
|
||||
template <class T2, class E2, class P2>
|
||||
Promise<T2, E2, P2>::State convert() && {
|
||||
typename Promise<T2, E2, P2>::State convert() && {
|
||||
if (this->has_value()) {
|
||||
if constexpr (std::is_same_v<T, T2>) {
|
||||
return Promise<T2, E2, P2>::State::make_value(std::move(std::move(*this).take_value()));
|
||||
|
|
Loading…
Reference in a new issue