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