Skip to content

Commit 58d6878

Browse files
committed
Fix include issue
1 parent 60430cf commit 58d6878

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/OpenRenderBox/include/OpenRenderBox/ORBPath.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#pragma once
66

7-
#include "ORBBase.h"
7+
#include <OpenRenderBox/ORBBase.h>
88

99
ORB_ASSUME_NONNULL_BEGIN
1010

Sources/OpenRenderBox/include/OpenRenderBox/ORBPathStorage.h

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

55
#pragma once
66

7-
#include "ORBBase.h"
8-
#include "ORBPath.h"
7+
#include <OpenRenderBox/ORBBase.h>
8+
#include <OpenRenderBox/ORBPath.h>
99

1010
#if ORB_TARGET_OS_DARWIN
1111
#include <CoreGraphics/CoreGraphics.h>

Sources/OpenRenderBox/include/OpenRenderBox/ORBUUID.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#pragma once
66

7-
#include "ORBBase.h"
7+
#include <OpenRenderBox/ORBBase.h>
88

99
#if ORB_TARGET_OS_DARWIN && __OBJC__
1010
#include <Foundation/Foundation.h>

0 commit comments

Comments
 (0)