Skip to content

Commit

Permalink
fix include paths
Browse files Browse the repository at this point in the history
  • Loading branch information
li-feng-sc committed Feb 22, 2024
1 parent 23a0424 commit c67c7f9
Show file tree
Hide file tree
Showing 19 changed files with 15 additions and 19 deletions.
1 change: 0 additions & 1 deletion support-lib/composer/DataRef_composer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/

#include "../cpp/DataRef.hpp"
#include "DataRef_composer.hpp"
#include <variant>

Expand Down
2 changes: 1 addition & 1 deletion support-lib/composer/DataRef_composer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_composer.hpp"
#include "../cpp/DataRef.hpp"
#include "DataRef.hpp"

namespace djinni::composer {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/composer/DataView_composer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_composer.hpp"
#include "../cpp/DataView.hpp"
#include "DataView.hpp"

namespace djinni::composer {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/composer/Future_composer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_composer.hpp"
#include "../cpp/Future.hpp"
#include "Future.hpp"
#include "composer_core/cpp/Utils/ResolvablePromise.hpp"

namespace djinni {
Expand Down
2 changes: 1 addition & 1 deletion support-lib/composer/Outcome_composer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_composer.hpp"
#include "../cpp/expected.hpp"
#include "expected.hpp"

namespace djinni {

Expand Down
1 change: 0 additions & 1 deletion support-lib/jni/DataRef_jni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/

#include "../cpp/DataRef.hpp"
#include "DataRef_jni.hpp"

#if DATAREF_JNI
Expand Down
2 changes: 1 addition & 1 deletion support-lib/jni/DataRef_jni.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_support.hpp"
#include "../cpp/DataRef.hpp"
#include "DataRef.hpp"

namespace djinni {
struct NativeDataRef {
Expand Down
2 changes: 1 addition & 1 deletion support-lib/jni/DataView_jni.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_support.hpp"
#include "../cpp/DataView.hpp"
#include "DataView.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/jni/Future_jni.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "djinni_support.hpp"
#include "Marshal.hpp"
#include "../cpp/Future.hpp"
#include "Future.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/jni/Outcome_jni.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "djinni_support.hpp"
#include "Marshal.hpp"
#include "../cpp/expected.hpp"
#include "expected.hpp"

namespace djinni {

Expand Down
1 change: 0 additions & 1 deletion support-lib/objc/DataRef_objc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/

#include "../cpp/DataRef.hpp"
#include "DataRef_objc.hpp"

#if DATAREF_OBJC
Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/DataRef_objc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "DJIMarshal+Private.h"
#include "../cpp/DataRef.hpp"
#include "DataRef.hpp"

namespace djinni {
struct NativeDataRef {
Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/DataView_objc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "DJIMarshal+Private.h"
#include "../cpp/DataView.hpp"
#include "DataView.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/objc/Outcome_objc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "DJIMarshal+Private.h"
#include "../cpp/expected.hpp"
#include "expected.hpp"
#import "DJOutcome.h"

namespace djinni {
Expand Down
1 change: 0 additions & 1 deletion support-lib/wasm/DataRef_wasm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
* limitations under the License.
*/

#include "../cpp/DataRef.hpp"
#include "DataRef_wasm.hpp"

#if DATAREF_WASM
Expand Down
2 changes: 1 addition & 1 deletion support-lib/wasm/DataRef_wasm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_wasm.hpp"
#include "../cpp/DataRef.hpp"
#include "DataRef.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/wasm/DataView_wasm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_wasm.hpp"
#include "../cpp/DataView.hpp"
#include "DataView.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/wasm/Future_wasm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_wasm.hpp"
#include "../cpp/Future.hpp"
#include "Future.hpp"

namespace djinni {

Expand Down
2 changes: 1 addition & 1 deletion support-lib/wasm/Outcome_wasm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#pragma once

#include "djinni_wasm.hpp"
#include "../cpp/expected.hpp"
#include "expected.hpp"

namespace djinni {

Expand Down

0 comments on commit c67c7f9

Please sign in to comment.