Skip to content
Open
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
2 changes: 1 addition & 1 deletion cmake/toolchains/iOS.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ set (CMAKE_OSX_ARCHITECTURES ${APPLE_ARCH} CACHE STRING "Build architecture for
if (VERACODE)
set (APPLE_IOS_VERSION_MIN "10.0" CACHE STRING "Minimum supported Apple iOS version.")
else ()
set (APPLE_IOS_VERSION_MIN "11.0" CACHE STRING "Minimum supported Apple iOS version.")
set (APPLE_IOS_VERSION_MIN "12.0" CACHE STRING "Minimum supported Apple iOS version.")
endif ()
set (APPLE_WATCH_VERSION_MIN "2.0" CACHE STRING "Minimum supported Apple Watch version.")
set (APPLE_TV_VERSION_MIN "11.0" CACHE STRING "Minimum supported Apple TV version.")
Expand Down
2 changes: 1 addition & 1 deletion olp-cpp-sdk-authentication/src/AuthenticationClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

#include <utility>

#include "AuthenticationClientImpl.h"
#include "AuthenticationClientImpl.h"
#include "olp/authentication/AuthorizeRequest.h"
#include "olp/core/client/ApiError.h"
#include "olp/core/client/CancellationToken.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#include <gmock/gmock.h>

#include "AuthenticationClientImpl.h"
#include "AuthenticationClientImpl.h"
#include "AuthenticationClientUtils.h"
#include "mocks/NetworkMock.h"

Expand Down
1 change: 1 addition & 0 deletions olp-cpp-sdk-core/src/http/ios/OLPHttpClient.mm
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

#import "OLPHttpClient+Internal.h"


#import <CommonCrypto/CommonDigest.h>
#import <Security/Security.h>

Expand Down
1 change: 1 addition & 0 deletions olp-cpp-sdk-core/src/http/ios/OLPHttpTask.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* License-Filename: LICENSE
*/


#pragma once

#import <Foundation/Foundation.h>
Expand Down
2 changes: 1 addition & 1 deletion scripts/misc/clang_format_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ git fetch origin master
git branch --all
# Get affected files and filter source files
FILES=$(git diff-tree --no-commit-id --name-only --diff-filter=d -r origin/master "$CURRENT_BRANCH" \
| grep '\.c\|\.cpp\|\.cxx\|\.h\|\.hpp\|\.hxx\|\.mm')
| grep '\.c\b\|\.cpp\b\|\.cxx\b\|\.h\b\|\.hpp\b\|\.hxx\b\|\.mm\b')

if [ -z "$FILES" ]; then
printf "No affected files, exiting.\n"
Expand Down
Loading