Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode 15.x warnings #596

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading