[Issue 14888] New: std.zlib.uncompress should take const(void)[] instead of void[]

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14888

  Issue ID: 14888
   Summary: std.zlib.uncompress should take const(void)[] instead
of void[]
   Product: D
   Version: D2
  Hardware: x86_64
OS: Windows
Status: NEW
  Severity: enhancement
  Priority: P1
 Component: phobos
  Assignee: nob...@puremagic.com
  Reporter: temta...@gmail.com

As title. There is no reason why it doesn't accept const(void).

--


[Issue 14873] Build fails with message 'cannot create PDB file'

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14873

--- Comment #5 from Rainer Schuetze  ---
> Issue 14164 appears completely unrelated to this.

Sorry, mistyped here. I meant issue 14614.

--


[Issue 14507] Installer doesn't configure VS2010 properly; missing mspdb100.dll

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14507

Rainer Schuetze  changed:

   What|Removed |Added

 CC||r.sagita...@gmx.de

--- Comment #1 from Rainer Schuetze  ---
> I think one problem is that Visual-D needs to ignore sc.ini

There is an option on the Visual D setup page to actually do this. Do you have
it enabled?

IIRC mspdb100.dll is only found in the /Common7/IDE folder, so make
sure this path is listed in the "Executable Path" setting. This is only true
for the 32-bit linker executable, the 64-bit version in the amd64 folder has
the DLL in the same folder.

--


[Issue 14885] ideas for prettier and more useful backtraces

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14885

Adam D. Ruppe  changed:

   What|Removed |Added

 CC||destructiona...@gmail.com

--- Comment #4 from Adam D. Ruppe  ---
I agree, that would be nice. I also think the name of the function is actually
mostly just noise; they are too long to read in most cases.

I'd kinda prefer it just give the last part of the name without the arguments
(so just plain `to` instead of `pure @safe int
std.conv.to!(int).to!(immutable(char)[]).to(immutable(char)[])`... maybe with
template args, but they get ridiculously long too, but just the name followed
by a way to get more info.

An external tool (which we could provide) could then get more info as requested
from the backtrace line, like the full function name. (Even with line numbers,
listing the address is probably useful for more info...)

--


[Issue 12750] VS2010 profiler doesn't seem to work

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=12750

--- Comment #6 from Manu  ---
Yup, it's all good. We've recently switched to 2013 at work, and I'm starting
to make the change at home too >_<

--


[Issue 14507] Installer doesn't configure VS2010 properly; missing mspdb100.dll

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14507

--- Comment #2 from Manu  ---
At the time I logged this bug, the paths you mention were not present in the
executable paths setting (a fresh install).
I had to manually add them.
The option to override sc.ini does seem to be checked by default (as expected).

It might just be worth verifying logic exists in the installer to set these
paths correctly on install and then close this issue until it appears again ;)

--


[Issue 5100] -O Degrades performance of loop statements

2015-08-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=5100

--- Comment #10 from Iain Buclaw  ---
For a while now I've been thinking that the bottleneck is probably to do with
alignment, but I'd have to get out my (now two generations old) atom netbook to
investigate further.

--