Un-inline-ing a method declared as export

Reviewed By: compnerd

Differential Revision: D5909847

fbshipit-source-id: 7108dd88271e640e1881b20c0cbf1ad28bbf63c9
This commit is contained in:
Marko Novakovic 2017-09-26 18:55:54 -07:00 committed by Facebook Github Bot
parent 227a5f4e8f
commit 5038b06b31

View File

@ -503,7 +503,7 @@ YGNodeRef YGNodeGetParent(const YGNodeRef node) {
return node->parent;
}
inline uint32_t YGNodeGetChildCount(const YGNodeRef node) {
uint32_t YGNodeGetChildCount(const YGNodeRef node) {
return YGNodeListCount(node->children);
}