Skip to content

Commit

Permalink
fix: add support for intel-based iOS simulator( __x86_64__)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFarhan authored Oct 19, 2024
1 parent f1e16e5 commit 524aaf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if 0
#elif defined(__arm64__) && __arm64__
#elif (defined(__arm64__) && __arm64__) || (defined(__x86_64__) && __x86_64__)
// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef NUKE_SWIFT_H
#define NUKE_SWIFT_H
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if 0
#elif defined(__arm64__) && __arm64__
#elif (defined(__arm64__) && __arm64__) || (defined(__x86_64__) && __x86_64__)
// Generated by Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
#ifndef NUKEUI_SWIFT_H
#define NUKEUI_SWIFT_H
Expand Down

0 comments on commit 524aaf0

Please sign in to comment.