[Issue 17010] remove std.net.isemail

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17010

Jacob Carlborg  changed:

   What|Removed |Added

 CC||d...@me.com

--- Comment #2 from Jacob Carlborg  ---
(In reply to greenify from comment #0)
> Very old module and only a port of the C module.
> 
> This can be done a lot better via DUB packages, e.g.
> 
> -> https://github.com/anton-dutov/mail
> -> http://vibed.org/api/vibe.mail.smtp/Mail
> 
> Proposed action: deprecate and move to undeaD

It's actually ported from PHP, by request from Walter (or Andrei).

--


[Issue 16453] Missing @nogc annotations

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16453

Jack Stouffer  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||j...@jackstouffer.com
 Resolution|--- |FIXED

--- Comment #2 from Jack Stouffer  ---
Several functions in core.thread are now marked @nogc. If you have other
specific functions in mind, please make other issues for them.

--


[Issue 4391] std.functional.curry is not a real curry

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4391

Andrei Alexandrescu  changed:

   What|Removed |Added

   Assignee|and...@erdani.com   |nob...@puremagic.com

--


[Issue 4391] std.functional.curry is not a real curry

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4391

Andrei Alexandrescu  changed:

   What|Removed |Added

   Keywords||bootcamp

--- Comment #6 from Andrei Alexandrescu  ---
Put this up for bootcamp.

--


[Issue 16824] std.experimental.allocator.dispose leaks memory for arrays of more than 1 dimension

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=16824

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

https://github.com/dlang/phobos/commit/64a0814ae426749a70decc5382b2fb3365a52a3e
Issue 16824: fix experimental makeMultidimensionalArray API

--


[Issue 17164] [REG 2.072.0] undefined identifier '__va_argsave'

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17164

Walter Bright  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||bugzi...@digitalmars.com
 Resolution|--- |WONTFIX

--- Comment #1 from Walter Bright  ---
__va_argsave is an internal symbol with more or less magic semantics. Support
for it has been removed, as proper stdarg semantics now works. Use
core.stdc.stdarg, and va_list, va_start, va_arg and va_end.

https://github.com/dlang/dmd/pull/5779

--


[Issue 17188] `core.stdc.stdlib.qsort()` is broken

2017-02-22 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=17188

Walter Bright  changed:

   What|Removed |Added

   Keywords||safe
 CC||bugzi...@digitalmars.com

--