WIP: FloatOptional GCC build fix and more constexpr #1411

Closed
NickGerleman wants to merge 22 commits from NickGerleman-fix-gcc-floatoptional into main
3 changed files with 10 additions and 6 deletions
Showing only changes of commit 1499f55718 - Show all commits

View File

@@ -30,7 +30,7 @@ struct FloatOptional {
} }
constexpr bool isUndefined() const { constexpr bool isUndefined() const {
return yoga::isUndefined(value); return yoga::isUndefined(value_);
} }
}; };