Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsylve committed Nov 15, 2022
1 parent 9b0f6bb commit 81e5976
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,33 @@ jobs:
- name: Xcode 13.2
os: osx
osx_image: xcode13.2
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_UPGRADE=1 brew install git-lfs
before_script:
- git lfs install && git lfs pull
- name: Xcode 10.3
os: osx
osx_image: xcode10.3
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_UPGRADE=1 brew install git-lfs
before_script:
- git lfs install && git lfs pull
- name: Xcode 10.3 (targeting macOS 10.12)
os: osx
osx_image: xcode10.3
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_UPGRADE=1 brew install git-lfs
before_script:
- git lfs install && git lfs pull
env:
- MACOSX_DEPLOYMENT_TARGET="10.12"
- name: Xcode 13.2 (targeting macOS 10.12)
os: osx
osx_image: xcode13.2
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_UPGRADE=1 brew install git-lfs
before_script:
- git lfs install && git lfs pull
env:
- MACOSX_DEPLOYMENT_TARGET="10.12"

Expand Down
4 changes: 2 additions & 2 deletions include/yatlib/bitmap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ class bitmap_view {

public:
/// Create a bitmap view a set of bits
constexpr bitmap_view(const void* data, uint64_t num_bits) noexcept
bitmap_view(const void* data, uint64_t num_bits) noexcept
: _num_bits{num_bits},
_bits{static_cast<const storage_type*>(data), cas(num_bits)} {}

/// Create a bitmap view from a bitmap
constexpr bitmap_view(const bitmap& bm) noexcept
bitmap_view(const bitmap& bm) noexcept
: bitmap_view{bm._storage.data(), bm._count} {}

/// Access a given bit. No bounds checking is performed and accessing an
Expand Down

0 comments on commit 81e5976

Please sign in to comment.