Skip to content

Commit

Permalink
Merge pull request #596 from /issues/593-xcode-warnings
Browse files Browse the repository at this point in the history
Xcode 15.x warnings
  • Loading branch information
hvge authored Jun 6, 2024
2 parents d9eb48f + d089b58 commit ae4ccd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions proj-xcode/PowerAuth2/PowerAuthLog.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

// Implementations

PA2_EXTERN_C void PowerAuthLogImpl(NSString * format, ...);
PA2_EXTERN_C void PowerAuthLogImpl(NSString * _Nonnull format, ...);

// Macros

Expand Down Expand Up @@ -79,7 +79,7 @@ PA2_EXTERN_C BOOL PowerAuthLogIsVerbose(void);
is used internally in the PowerAuth SDK. This kind of warnings are always printed to the DEBUG
console and cannot be supressed by configuration.
*/
PA2_EXTERN_C void PowerAuthCriticalWarning(NSString * format, ...);
PA2_EXTERN_C void PowerAuthCriticalWarning(NSString * _Nonnull format, ...);

/**
Protocol that represents a delegate that can tap into the library logs and use them for example
Expand Down
2 changes: 1 addition & 1 deletion scripts/config-apple.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Platform CPU architectures
ARCH_IOS="arm64 arm64e"
ARCH_IOS="arm64"
ARCH_IOS_SIM="x86_64 arm64"
ARCH_CATALYST="x86_64"
ARCH_TVOS="arm64"
Expand Down

0 comments on commit ae4ccd9

Please sign in to comment.