Skip to content

Commit 257c041

Browse files
authored
Merge pull request dlang-community#141 from dlang-community/stdx-allocs+Meson
Fix CI failure starting from DMD 2.085
2 parents 18a0224 + a954f70 commit 257c041

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ script:
2727
- ninja -j8 -C build test -v
2828
- git submodule update --init --recursive
2929
- make -B -C test/
30+
- dub test

src/containers/unrolledlist.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ private:
565565
static if (BookkeepingType.sizeof < uint.sizeof)
566566
immutable uint notReg = ~(cast(uint) registry);
567567
else
568-
immutable uint notReg = ~registry;
568+
immutable uint notReg = cast(uint) (~registry);
569569
version (LDC)
570570
{
571571
import ldc.intrinsics : llvm_cttz;

subprojects/stdx-allocator.wrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[wrap-git]
22
directory = stdx-allocator
33
url = https://github.com/dlang-community/stdx-allocator.git
4-
revision = v2.77.4
4+
revision = v2.77.5

0 commit comments

Comments
 (0)