[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2018-01-05 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

--- Comment #7 from github-bugzi...@puremagic.com ---
Commits pushed to dmd-cxx at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a7ea880eb24a36e09e50de7b8b32d941110aa630
Fix issue 17482: Fix Nullable!Variant equality checks.

https://github.com/dlang/phobos/commit/d07b10148dcfbf494a8f433ebf5646a4cb8d1b10
Merge pull request #5541 from jmdavis/issue_17482

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-07-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

--- Comment #6 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a7ea880eb24a36e09e50de7b8b32d941110aa630
Fix issue 17482: Fix Nullable!Variant equality checks.

https://github.com/dlang/phobos/commit/d07b10148dcfbf494a8f433ebf5646a4cb8d1b10
Merge pull request #5541 from jmdavis/issue_17482

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-07-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

github-bugzi...@puremagic.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-07-07 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

--- Comment #5 from github-bugzi...@puremagic.com ---
Commits pushed to stable at https://github.com/dlang/phobos

https://github.com/dlang/phobos/commit/a7ea880eb24a36e09e50de7b8b32d941110aa630
Fix issue 17482: Fix Nullable!Variant equality checks.

https://github.com/dlang/phobos/commit/d07b10148dcfbf494a8f433ebf5646a4cb8d1b10
Merge pull request #5541 from jmdavis/issue_17482

Fix issue 17482: Fix Nullable!Variant equality checks.
merged-on-behalf-of: Sebastian Wilzbach 

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-07-04 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

--- Comment #4 from Jonathan M Davis  ---
https://github.com/dlang/phobos/pull/5541

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-07-03 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

Jonathan M Davis  changed:

   What|Removed |Added

 CC||issues.dl...@jmdavisprog.co
   ||m

--- Comment #3 from Jonathan M Davis  ---
(In reply to David Marquant from comment #2)
> Should it also be possible to assign values?
> 
> a = 11; // Isn't compiling as well

That did not compile with 2.073.2. So, regardless of what the desired behavior
would be, the fact that that does not currently compile is not a regression.

Also, a better example of the regression would probably be something like

Nullable!Variant a = Variant(12);
assert(a != 11);

since the original example would actually fail an assertion otherwise - though
the compilation error is the same.

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-06-12 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

David Marquant  changed:

   What|Removed |Added

 CC||davi...@live.de

--- Comment #2 from David Marquant  ---
Should it also be possible to assign values?

a = 11; // Isn't compiling as well

--


[Issue 17482] [REG 2.074] comile error: Comparing Nullable!Variant with basic type

2017-06-09 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17482

Vladimir Panteleev  changed:

   What|Removed |Added

 CC||thecybersha...@gmail.com

--- Comment #1 from Vladimir Panteleev  ---
Introduced in https://github.com/dlang/phobos/pull/5032

--