We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff049b commit 477f5fbCopy full SHA for 477f5fb
.gitignore
@@ -25,6 +25,7 @@ node_modules
25
# Xcode
26
## Build generated
27
build/
28
+build32/
29
DerivedData/
30
31
## Various settings
yoga/config/Config.h
@@ -22,7 +22,8 @@ namespace facebook::yoga {
22
class Config;
23
class Node;
24
-using ExperimentalFeatureSet = std::bitset<ordinalCount<ExperimentalFeature>()>;
+constexpr size_t ExperimentalFeatureCount = 1;
+using ExperimentalFeatureSet = std::bitset<ExperimentalFeatureCount>;
// Whether moving a node from an old to new config should dirty previously
// calculated layout results.
0 commit comments