Summary: Changelog: [Internal][Yoga] Fixed lint errors ```arc lint --apply-patches --take CLANGFORMAT --paths-cmd 'hg files xplat/yoga' ``` Added .clang-tidy file Reviewed By: zertosh Differential Revision: D19948702 fbshipit-source-id: f77a16d6f2c532267597a84a9caded0aae68c3aa
18 lines
363 B
Objective-C
18 lines
363 B
Objective-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.
|
|
*/
|
|
|
|
#import <yoga/Yoga.h>
|
|
#import "YGLayout.h"
|
|
|
|
@interface YGLayout ()
|
|
|
|
@property(nonatomic, assign, readonly) YGNodeRef node;
|
|
|
|
- (instancetype)initWithView:(UIView*)view;
|
|
|
|
@end
|