| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
|---|---|
| 2 | // Copyright (c) Meta Platforms, Inc. and affiliates. |
| 3 | // |
| 4 | // SPDX-License-Identifier: MIT |
| 5 | |
| 6 | #include <yoga/YGValue.h> |
| 7 | |
| 8 | QT_YOGA_NAMESPACE_BEGIN |
| 9 | |
| 10 | const YGValue YGValueZero = {.value: 0, .unit: YGUnitPoint}; |
| 11 | const YGValue YGValueUndefined = {.value: YGUndefined, .unit: YGUnitUndefined}; |
| 12 | const YGValue YGValueAuto = {.value: YGUndefined, .unit: YGUnitAuto}; |
| 13 | |
| 14 | QT_YOGA_NAMESPACE_END |
| 15 |
