Skip to content

Commit

Permalink
Added xcode 15, fixed apple clang
Browse files Browse the repository at this point in the history
  • Loading branch information
gracicot committed Apr 27, 2024
1 parent 8733dfc commit d68dd06
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/all-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ jobs:
fail-fast: false
matrix:
arch: [x64]
os: [macos-12]
xcode: [13, 14]
os: [macos-13]
xcode: [14.3, 15.2]
include:
- xcode: 13
os: macos-12
arch: x64

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions include/kangaru/detail/heap_storage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,7 @@ namespace kangaru {
{ std::as_const(container).end() } -> std::same_as<typename T::const_iterator>;
{ std::as_const(container).empty() } -> std::same_as<bool>;
{ container.clear() } -> std::same_as<void>;
{ container.insert(container.begin(), container.begin(), container.end()) };
{ container.insert(container.begin(), std::as_const(container).begin(), std::as_const(container).end()) };
{ container.insert(container.begin(), std::make_move_iterator(container.begin()), std::make_move_iterator(container.end())) };
{ container.erase(container.begin()) } -> std::same_as<typename T::iterator>;
{ container.erase(std::as_const(container).begin()) } -> std::same_as<typename T::iterator>;
};
Expand Down

0 comments on commit d68dd06

Please sign in to comment.