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
8QT_YOGA_NAMESPACE_BEGIN
9
10const YGValue YGValueZero = {.value: 0, .unit: YGUnitPoint};
11const YGValue YGValueUndefined = {.value: YGUndefined, .unit: YGUnitUndefined};
12const YGValue YGValueAuto = {.value: YGUndefined, .unit: YGUnitAuto};
13
14QT_YOGA_NAMESPACE_END
15

source code of qtdeclarative/src/3rdparty/yoga/YGValue.cpp