nodeguy/src/cpp/include/deps/yoga/YGNodePrint.h
Atul R 3c57b550df
Bump yoga to 1.18.0 and typescript to 3.7.2 (#181)
* Updates yoga to v1.18.0

* Testing the flex layout a bit
2019-11-08 21:10:02 +01:00

23 lines
461 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#ifdef DEBUG
#pragma once
#include <string>
#include "Yoga.h"
namespace facebook {
namespace yoga {
void YGNodeToString(std::string& str, YGNodeRef node, YGPrintOptions options,
uint32_t level);
} // namespace yoga
} // namespace facebook
#endif