diff --git a/packages/react-native/ReactCommon/react/renderer/css/CSSList.h b/packages/react-native/ReactCommon/react/renderer/css/CSSList.h index acb33ae3403d..98004ec4a096 100644 --- a/packages/react-native/ReactCommon/react/renderer/css/CSSList.h +++ b/packages/react-native/ReactCommon/react/renderer/css/CSSList.h @@ -17,22 +17,22 @@ namespace facebook::react { -template +template struct CSSList; -template -struct CSSList : public std::vector {}; +template +struct CSSList : public std::vector {}; -template -struct CSSList : public std::vector {}; +template +struct CSSList : public std::vector {}; -template -struct CSSDataTypeParser> { - static inline auto consume(CSSValueParser &parser) -> std::optional> +template +struct CSSDataTypeParser> { + static inline auto consume(CSSValueParser &parser) -> std::optional> { - CSSList result; + CSSList result; for (auto nextValue = parser.parseNextValue(); !std::holds_alternative(nextValue); - nextValue = parser.parseNextValue(Delim)) { + nextValue = parser.parseNextValue(Delimeter)) { // Copy from the variant of possible values to the element (either the // concrete type, or a variant of compound types which exlcudes the // possibility of std::monostate for parse error)