Skip to content

Commit

Permalink
Merge pull request #141 from dlang-community/stdx-allocs+Meson
Browse files Browse the repository at this point in the history
Fix CI failure starting from DMD 2.085
  • Loading branch information
wilzbach authored Mar 16, 2019
2 parents 18a0224 + a954f70 commit 257c041
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ script:
- ninja -j8 -C build test -v
- git submodule update --init --recursive
- make -B -C test/
- dub test
2 changes: 1 addition & 1 deletion src/containers/unrolledlist.d
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ private:
static if (BookkeepingType.sizeof < uint.sizeof)
immutable uint notReg = ~(cast(uint) registry);
else
immutable uint notReg = ~registry;
immutable uint notReg = cast(uint) (~registry);
version (LDC)
{
import ldc.intrinsics : llvm_cttz;
Expand Down
2 changes: 1 addition & 1 deletion subprojects/stdx-allocator.wrap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[wrap-git]
directory = stdx-allocator
url = https://github.com/dlang-community/stdx-allocator.git
revision = v2.77.4
revision = v2.77.5

0 comments on commit 257c041

Please sign in to comment.