-
Notifications
You must be signed in to change notification settings - Fork 39
Fix CI failure starting from DMD 2.085 #141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
a63062b
to
87a48d7
Compare
@@ -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); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Hackerpilot , to answer to a previous review comment (#137), the two branches are not the same. The first is to fix the deprecation message related to integral promotion not done, the other fixes the issue.
@@ -27,3 +27,4 @@ script: | |||
- ninja -j8 -C build test -v | |||
- git submodule update --init --recursive | |||
- make -B -C test/ | |||
- dub test |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
otherwise #136 is not triggered
Any objection ? I'll wait till Monday because we cant stay stuck to the fixed container version (because of #136) for ever. It's time to move forward. |
Thanks! |
Thanks this should allow dlangide to be built without error |
Sorry for the lack of responses. I was on vacation last week. |
No description provided.