/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ // @generated by enums.py // clang-format off #pragma once #include #include #include namespace facebook::yoga { enum class Errata : uint32_t { None = YGErrataNone, StretchFlexBasis = YGErrataStretchFlexBasis, All = YGErrataAll, Classic = YGErrataClassic, }; YG_DEFINE_ENUM_FLAG_OPERATORS(Errata) template <> constexpr inline int32_t ordinalCount() { return 4; } template <> constexpr inline int32_t bitCount() { return 2; } constexpr inline Errata scopedEnum(YGErrata unscoped) { return static_cast(unscoped); } constexpr inline YGErrata unscopedEnum(Errata scoped) { return static_cast(scoped); } inline const char* toString(Errata e) { return YGErrataToString(unscopedEnum(e)); } } // namespace facebook::yoga