Skip to content

Commit

Permalink
Resolve header quote warning
Browse files Browse the repository at this point in the history
  • Loading branch information
OhKanghoon committed Jun 17, 2024
1 parent 45e3660 commit 58cac0d
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion Sources/YogaKit/include/YogaKit/UIView+Yoga.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

#import <UIKit/UIKit.h>
#import "YGLayout.h"
#import <YGLayout.h>

NS_ASSUME_NONNULL_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Sources/YogaKit/include/YogaKit/YGLayout+Private.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
* LICENSE file in the root directory of this source tree.
*/

#import "Yoga.h"
#import "YGLayout.h"
#import <Yoga.h>
#import <YGLayout.h>

@interface YGLayout ()

Expand Down
6 changes: 3 additions & 3 deletions Sources/YogaKit/include/YogaKit/YGLayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

#import <UIKit/UIKit.h>

#import "YGEnums.h"
#import "YGMacros.h"
#import "Yoga.h"
#import <YGEnums.h>
#import <YGMacros.h>
#import <Yoga.h>

YG_EXTERN_C_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Sources/yoga/include/yoga/YGConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <stdbool.h>
#include <stddef.h>

#include "YGEnums.h"
#include "YGMacros.h"
#include <YGEnums.h>
#include <YGMacros.h>

YG_EXTERN_C_BEGIN

Expand Down
2 changes: 1 addition & 1 deletion Sources/yoga/include/yoga/YGEnums.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// @generated by enums.py
// clang-format off
#pragma once
#include "YGMacros.h"
#include <YGMacros.h>

YG_EXTERN_C_BEGIN

Expand Down
6 changes: 3 additions & 3 deletions Sources/yoga/include/yoga/YGNode.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#include <stdbool.h>
#include <stddef.h>

#include "YGConfig.h"
#include "YGEnums.h"
#include "YGMacros.h"
#include <YGConfig.h>
#include <YGEnums.h>
#include <YGMacros.h>

YG_EXTERN_C_BEGIN

Expand Down
6 changes: 3 additions & 3 deletions Sources/yoga/include/yoga/YGNodeLayout.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#include <stdbool.h>

#include "YGConfig.h"
#include "YGEnums.h"
#include "YGMacros.h"
#include <YGConfig.h>
#include <YGEnums.h>
#include <YGMacros.h>

YG_EXTERN_C_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Sources/yoga/include/yoga/YGNodeStyle.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

#include <stddef.h>

#include "YGNode.h"
#include "YGValue.h"
#include <YGNode.h>
#include <YGValue.h>

YG_EXTERN_C_BEGIN

Expand Down
6 changes: 3 additions & 3 deletions Sources/yoga/include/yoga/YGPixelGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

#include <stdbool.h>

#include "YGConfig.h"
#include "YGEnums.h"
#include "YGMacros.h"
#include <YGConfig.h>
#include <YGEnums.h>
#include <YGMacros.h>

YG_EXTERN_C_BEGIN

Expand Down
4 changes: 2 additions & 2 deletions Sources/yoga/include/yoga/YGValue.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

#include <stdbool.h>

#include "YGEnums.h"
#include "YGMacros.h"
#include <YGEnums.h>
#include <YGMacros.h>

/**
* Float value to represent "undefined" in style values.
Expand Down
16 changes: 8 additions & 8 deletions Sources/yoga/include/yoga/Yoga.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
* `#include <yoga/Yoga.h>` includes all of Yoga's public headers.
*/

#include "YGConfig.h"
#include "YGEnums.h"
#include "YGMacros.h"
#include "YGNode.h"
#include "YGNodeLayout.h"
#include "YGNodeStyle.h"
#include "YGPixelGrid.h"
#include "YGValue.h"
#include <YGConfig.h>
#include <YGEnums.h>
#include <YGMacros.h>
#include <YGNode.h>
#include <YGNodeLayout.h>
#include <YGNodeStyle.h>
#include <YGPixelGrid.h>
#include <YGValue.h>

0 comments on commit 58cac0d

Please sign in to comment.