Skip to content

Commit 58cac0d

Browse files
committed
Resolve header quote warning
1 parent 45e3660 commit 58cac0d

File tree

11 files changed

+30
-30
lines changed

11 files changed

+30
-30
lines changed

Sources/YogaKit/include/YogaKit/UIView+Yoga.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
#import <UIKit/UIKit.h>
9-
#import "YGLayout.h"
9+
#import <YGLayout.h>
1010

1111
NS_ASSUME_NONNULL_BEGIN
1212

Sources/YogaKit/include/YogaKit/YGLayout+Private.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* LICENSE file in the root directory of this source tree.
66
*/
77

8-
#import "Yoga.h"
9-
#import "YGLayout.h"
8+
#import <Yoga.h>
9+
#import <YGLayout.h>
1010

1111
@interface YGLayout ()
1212

Sources/YogaKit/include/YogaKit/YGLayout.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
#import <UIKit/UIKit.h>
99

10-
#import "YGEnums.h"
11-
#import "YGMacros.h"
12-
#import "Yoga.h"
10+
#import <YGEnums.h>
11+
#import <YGMacros.h>
12+
#import <Yoga.h>
1313

1414
YG_EXTERN_C_BEGIN
1515

Sources/yoga/include/yoga/YGConfig.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
#include <stdbool.h>
1212
#include <stddef.h>
1313

14-
#include "YGEnums.h"
15-
#include "YGMacros.h"
14+
#include <YGEnums.h>
15+
#include <YGMacros.h>
1616

1717
YG_EXTERN_C_BEGIN
1818

Sources/yoga/include/yoga/YGEnums.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// @generated by enums.py
99
// clang-format off
1010
#pragma once
11-
#include "YGMacros.h"
11+
#include <YGMacros.h>
1212

1313
YG_EXTERN_C_BEGIN
1414

Sources/yoga/include/yoga/YGNode.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#include <stdbool.h>
1111
#include <stddef.h>
1212

13-
#include "YGConfig.h"
14-
#include "YGEnums.h"
15-
#include "YGMacros.h"
13+
#include <YGConfig.h>
14+
#include <YGEnums.h>
15+
#include <YGMacros.h>
1616

1717
YG_EXTERN_C_BEGIN
1818

Sources/yoga/include/yoga/YGNodeLayout.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
#include <stdbool.h>
1111

12-
#include "YGConfig.h"
13-
#include "YGEnums.h"
14-
#include "YGMacros.h"
12+
#include <YGConfig.h>
13+
#include <YGEnums.h>
14+
#include <YGMacros.h>
1515

1616
YG_EXTERN_C_BEGIN
1717

Sources/yoga/include/yoga/YGNodeStyle.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#include <stddef.h>
1111

12-
#include "YGNode.h"
13-
#include "YGValue.h"
12+
#include <YGNode.h>
13+
#include <YGValue.h>
1414

1515
YG_EXTERN_C_BEGIN
1616

Sources/yoga/include/yoga/YGPixelGrid.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
#include <stdbool.h>
1111

12-
#include "YGConfig.h"
13-
#include "YGEnums.h"
14-
#include "YGMacros.h"
12+
#include <YGConfig.h>
13+
#include <YGEnums.h>
14+
#include <YGMacros.h>
1515

1616
YG_EXTERN_C_BEGIN
1717

Sources/yoga/include/yoga/YGValue.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#include <stdbool.h>
1111

12-
#include "YGEnums.h"
13-
#include "YGMacros.h"
12+
#include <YGEnums.h>
13+
#include <YGMacros.h>
1414

1515
/**
1616
* Float value to represent "undefined" in style values.

Sources/yoga/include/yoga/Yoga.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* `#include <yoga/Yoga.h>` includes all of Yoga's public headers.
1212
*/
1313

14-
#include "YGConfig.h"
15-
#include "YGEnums.h"
16-
#include "YGMacros.h"
17-
#include "YGNode.h"
18-
#include "YGNodeLayout.h"
19-
#include "YGNodeStyle.h"
20-
#include "YGPixelGrid.h"
21-
#include "YGValue.h"
14+
#include <YGConfig.h>
15+
#include <YGEnums.h>
16+
#include <YGMacros.h>
17+
#include <YGNode.h>
18+
#include <YGNodeLayout.h>
19+
#include <YGNodeStyle.h>
20+
#include <YGPixelGrid.h>
21+
#include <YGValue.h>

0 commit comments

Comments
 (0)