Skip to content

Commit

Permalink
chore: fix includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tjzel committed Nov 25, 2024
1 parent 92d8f39 commit 9bd0e44
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#endif

#import <worklets/WorkletRuntime/ReanimatedRuntime.h>
#import <worklets/apple/REAMessageThread.h>
#import <worklets/apple/WorkletsMessageThread.h>

#ifdef RCT_NEW_ARCH_ENABLED
#import <React/RCTBridge+Private.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#endif

#import <worklets/WorkletRuntime/ReanimatedRuntime.h>
#import <worklets/apple/REAMessageThread.h>
#import <worklets/apple/WorkletsMessageThread.h>

#ifdef RCT_NEW_ARCH_ENABLED
#import <React/RCTBridge+Private.h>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import <worklets/apple/REAMessageThread.h>
#import <worklets/apple/WorkletsMessageThread.h>

#import <condition_variable>
#import <mutex>
Expand All @@ -13,7 +13,7 @@
// Essentially the same as RCTMessageThread, but with public fields.
struct WorkletsMessageThreadPublic {
// I don't know why we need three vtables (if you know then feel free to#import
// <reanimated/apple/native/REAMessageThread.h> explain it instead of this message), but this is what makes the casts
// <worklets/apple/WorkletsMessageThread.h> explain it instead of this message), but this is what makes the casts
// in quitSynchronous() work correctly.
void *vtable1;
void *vtable2;
Expand Down

0 comments on commit 9bd0e44

Please sign in to comment.