[Issue 9608] Add introspection for templates

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

--- Comment #10 from Andrei Alexandrescu  ---
It seems https://github.com/D-Programming-Language/phobos/pull/3394 takes care
of this all.

--


[Issue 14664] New: std.windows.charset 404

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

  Issue ID: 14664
   Summary: std.windows.charset 404
   Product: D
   Version: D2
  Hardware: All
OS: All
Status: NEW
  Severity: normal
  Priority: P1
 Component: websites
  Assignee: nob...@puremagic.com
  Reporter: john.loughran.col...@gmail.com

It's linked from http://dlang.org/phobos-prerelease/index.html but is 404.

--


[Issue 14664] missing pages / broken links

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

John Colvin  changed:

   What|Removed |Added

Summary|std.windows.charset 404 |missing pages / broken
   ||links

--- Comment #1 from John Colvin  ---
Also, dlang.org/phobos-prerelease/std_process.html links to
dlang.org/phobos-prerelease/core_sys_posix_stdlib.html in two places, which is
also 404

--


[Issue 14665] New: thread priority does nothing on linux

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

  Issue ID: 14665
   Summary: thread priority does nothing on linux
   Product: D
   Version: D2
  Hardware: x86_64
OS: Linux
Status: NEW
  Severity: normal
  Priority: P1
 Component: Phobos
  Assignee: nob...@puremagic.com
  Reporter: r9shacklef...@gmail.com

pthread_setschedprio does nothing for non-realtime threads on linux, and
setting it to non-zero with a non-realtime scheduling policy is undefined
behavior[1].

I believe the correct thing to do is use nice levels(as it is per-thread, not
per-process in linux[2]) for thread priority[3]

[1] - sched(7) - For threads scheduled under one of the normal scheduling
policies (SCHED_OTHER, SCHED_IDLE, SCHED_BATCH), sched_priority is not used in
scheduling decisions (it must be specified as 0).

[2] - "The scheduling policy and parameters are in fact per-thread attributes
on Linux."
"The LinuxThreads implementation deviates from the POSIX.1 specification in a
number of ways, including the following ... Threads do not share a common nice
value." - pthreads(7)


[3] -  The dynamic priority is based on the nice value (set by nice(2),
setpriority(2),  or  sched_setattr(2))  and
   increased for each time quantum the thread is ready to run, but denied
to run by the scheduler.  This ensures fair progress among all SCHED_OTHER
threads.

--


[Issue 14656] "auto" of "auto ref" spills over to other function

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

--- Comment #3 from Daniel Kozak  ---
https://github.com/D-Programming-Language/dmd/pull/4728

--


[Issue 14656] "auto" of "auto ref" spills over to other function

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

--- Comment #4 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/ee8edc229c91171e5d4c4db7a0e6908c7846cb6d
fix Issue 14656 - "auto" of "auto ref" spills over to other function

https://github.com/D-Programming-Language/dmd/commit/a6065817b8fad6ca18eaf62323bb804633fa9cbe
Merge pull request #4728 from Kozzi11/issue14656

fix Issue 14656 - "auto" of "auto ref" spills over to other function

--


[Issue 14656] "auto" of "auto ref" spills over to other function

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

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

   What|Removed |Added

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

--


[Issue 14666] New: Bogus forward reference error

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

  Issue ID: 14666
   Summary: Bogus forward reference error
   Product: D
   Version: D2
  Hardware: x86
OS: Mac OS X
Status: NEW
  Severity: major
  Priority: P1
 Component: DMD
  Assignee: nob...@puremagic.com
  Reporter: deadal...@gmail.com

*

module d.base.location;

struct Location {
import d.base.name;
}

*

auto getNames() {
import d.lexer;
}

enum Names = getNames;

*

module d.lexer;

import d.base.location;

struct Token {
Location location;
}

*

I get libd/src/d/lexer.d(5): Error: struct d.lexer.Token has forward references
when compiling d/base/location.d

--


[Issue 14667] New: Assertion failed: (type->ty != Tstruct || ((TypeStruct *)type)->sym == this), function semantic, file struct.c, line 929.

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

  Issue ID: 14667
   Summary: Assertion failed: (type->ty != Tstruct || ((TypeStruct
*)type)->sym == this), function semantic, file
struct.c, line 929.
   Product: D
   Version: D2
  Hardware: x86
OS: Mac OS X
Status: NEW
  Severity: normal
  Priority: P1
 Component: DMD
  Assignee: nob...@puremagic.com
  Reporter: deadal...@gmail.com

In src/d/base/location.d
***

struct Location {
import d.lexer;
}

In src/d/lexer.d
***
import d.base.location;

***

$ dmd -c -ofobj/d.o libd/src/d/base/location.d -Isrc
libd/src/d/lexer.d(1): Error: module location from file
libd/src/d/base/location.d must be imported with 'import location;'
Assertion failed: (type->ty != Tstruct || ((TypeStruct *)type)->sym == this),
function semantic, file struct.c, line 929.
Abort trap: 6

Sure the first error is justified, but the assertion failure is somewhat
unexpected. Also, it may reveal a deeper problem.

--


[Issue 14668] New: Additional Macro Definitions Generated by Ddoc

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

  Issue ID: 14668
   Summary: Additional Macro Definitions Generated by Ddoc
   Product: D
   Version: D2
  Hardware: All
OS: All
Status: NEW
  Keywords: ddoc
  Severity: enhancement
  Priority: P1
 Component: DMD
  Assignee: nob...@puremagic.com
  Reporter: thecybersha...@gmail.com

It would be nice to be able to generate a link to the current page in DDoc, for
example to be able to pass the current page URL to a Bugzilla bug report form
template.

The "Macro Definitions Generated by Ddoc" section on http://dlang.org/ddoc.html
lists DOCFILENAME and SRCFILENAME. It would be nice to have, in addition to
these:

- MODULENAME: the name of the currently compiled module (e.g.
std.algorithm.iteration). Can be undefined for Ddoc files.
- DOCBASENAME: the base name of the output file (file name without directory).

--


[Issue 14446] ICE on invalid import

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

Vladimir Panteleev  changed:

   What|Removed |Added

 CC||deadal...@gmail.com

--- Comment #3 from Vladimir Panteleev  ---
*** Issue 14667 has been marked as a duplicate of this issue. ***

--


[Issue 14667] Assertion failed: (type->ty != Tstruct || ((TypeStruct *)type)->sym == this), function semantic, file struct.c, line 929.

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

Vladimir Panteleev  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||thecybersha...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Vladimir Panteleev  ---


*** This issue has been marked as a duplicate of issue 14446 ***

--


[Issue 14668] Add DOCBASENAME DDoc macro

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

Vladimir Panteleev  changed:

   What|Removed |Added

Summary|Additional Macro|Add DOCBASENAME DDoc macro
   |Definitions Generated by|
   |Ddoc|

--- Comment #1 from Vladimir Panteleev  ---
Never mind MODULENAME, I missed TITLE.

--


[Issue 63] DStress testcases contributed 12 Dec 2005 still to be added

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
   Assignee|thomas-dl...@kuehne.cn  |nob...@puremagic.com
Product|DStress |D

--


[Issue 69] dstress.run.a.assert_13_A/B

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
Product|DStress |D

--


[Issue 624] cdouble_11_B and creal_36_B syntax errors

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
   Assignee|thomas-dl...@kuehne.cn  |nob...@puremagic.com
Product|DStress |D

--


[Issue 1334] Missing closing bracket in asm_offset_01_A, line 37

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
   Assignee|thomas-dl...@kuehne.cn  |nob...@puremagic.com
Product|DStress |D

--


[Issue 267] DStress broken test cases: real_26

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
   Assignee|thomas-dl...@kuehne.cn  |nob...@puremagic.com
Product|DStress |D

--


[Issue 244] Syntax Errors in DStress

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|general |dstress
   Assignee|thomas-dl...@kuehne.cn  |nob...@puremagic.com
Product|DStress |D

--


[Issue 263] test new bug

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|TestComponent   |tools
Version|other   |unspecified
Product|TestProduct |D

--


[Issue 11] junk bug

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

Andrei Alexandrescu  changed:

   What|Removed |Added

 CC||and...@erdani.com
  Component|TestComponent   |tools
Version|other   |unspecified
   Assignee|bra...@puremagic.com|nob...@puremagic.com
Product|TestProduct |D

--


[Issue 10494] 'Help' link is broken

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1416] Add *NIX and FreeBSD to OS'es

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 12259] Allow a user to assign more than 1 vote per issue

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 2459] Proposed Bugzilla keyword: performance

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 2185] Bugzilla CC & Reasign

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 13389] Adding a comment to an issue sometimes follows by redirect to another issue

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 4386] Long summary lines are squashed in Bugzilla page header

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1507] ICE on a variadic function

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 12465] update bugzilla to 4.0 for duplicate suggestions

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1400] static array in struct as parameter BROKEN

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 1325] Forward declaration crashes gdc

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 175] ice while building aaA.d with enable checking

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.19|unspecified
Product|DGCC aka GDC|D

--


[Issue 1041] regression: incorrect code generation for scope(exit) inside switch

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 1033] internal compiler error: in output_die, at dwarf2out.c:7122

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 1046] TypeInfo.opEquals broken for structs

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 188] invalid free during AssertError destructor

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|Phobos  |DMD
Version|0.18|unspecified
Product|DGCC aka GDC|D

--


[Issue 3992] Login via real name or a custom username

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1422] DMD version info is outdated

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 2022] New D component "specification" needed

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1813] static function parametrized with alias used with delegate throws an internal compiler error.

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 843] gdc rejects asm{lldt AX;}

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.21|unspecified
Product|DGCC aka GDC|D

--


[Issue 889] listdir loops forever

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|Phobos  |DMD
Version|0.21|unspecified
Product|DGCC aka GDC|D

--


[Issue 1230] std.math.poly asm segfaults

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|Phobos  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 174] segfault with class member template function

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 739] incorrect opMulAssign/opDivAssign evaluation for imaginary types

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.20|unspecified
Product|DGCC aka GDC|D

--


[Issue 1044] Internal error: Illegal instruction (program cc1d) - nocompile/c/const_32_B.d

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 1751] char** null after Compilation

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 578] GDC evaluates rvalue of array assignment repeatedly

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.19|unspecified
Product|DGCC aka GDC|D

--


[Issue 1554] Segfault in generated code.

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 721] setup-gcc.sh uses -E option to sed, which doesn't exist on most sed implementations

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.20|unspecified
Product|DGCC aka GDC|D

--


[Issue 1045] TypeInfo.toString broken for unions and structs

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 1568] Core dump when I invoke a template member function

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 838] gdc rejects asm{smsw EAX;} as well as asm{smsw AX;}

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.21|unspecified
Product|DGCC aka GDC|D

--


[Issue 696] Error: (dg).ptr is not an lvalue

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.20|unspecified
Product|DGCC aka GDC|D

--


[Issue 1805] GDC does not implement the D calling convention

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 896] gdmd (dmd-script) script broken for certain parameters

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|Phobos  |DMD
Version|0.21|unspecified
Product|DGCC aka GDC|D

--


[Issue 1051] foreach over member array in static func causes ICE

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 307] Inline assembler function call

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.19|unspecified
Product|DGCC aka GDC|D

--


[Issue 1666] 64-bit gdc programs cannot allocate large arrays

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.24|unspecified
Product|DGCC aka GDC|D

--


[Issue 161] gdc and make -j2+ don't get along

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 1586] DMD and GDC segfaults on incomplete code segment.

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.005   |D2

--


[Issue 1591] 2.006 breaks writef("%s", str) where str is a string

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.006   |D2

--


[Issue 1402] imbricated structs, functions and "with" generate invalid code

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Version|0.23|unspecified
Product|DGCC aka GDC|D

--


[Issue 2024] Patch GDC to dmd 2.009

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|glue layer  |DMD
Product|DGCC aka GDC|D

--


[Issue 1823] Implicit conversion to const on associative array

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 1599] compile time evaluation with immutable problem

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.006   |D2

--


[Issue 1898] infinite loop when allocate an array of AA

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.012   |D2

--


[Issue 1982] [CTFE] Problems with compile-time null

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.012   |D2

--


[Issue 2042] Nav bar on left is incorrect

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.012   |D2

--


[Issue 2094] transitive const can be broken easily

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.012   |D2

--


[Issue 243] Replies to D.bugs no longer inject comments in the Issuezilla

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

Andrei Alexandrescu  changed:

   What|Removed |Added

  Component|general |websites
Product|puremagic.com   |D

--


[Issue 1831] Random seeding appears not to work

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 1616] std/metastrings.d

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.006   |D2

--


[Issue 1845] Variant and VariantN cannot handle structs of arbitrary size

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 1851] missing opCall? when cast away const struct

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 2763] std.mangle.demangle not translating 'ya'

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.026   |D2

--


[Issue 1548] foreach of type tuple and string literal bug

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.005   |D2

--


[Issue 1808] strange dmd StackOverflow with template and new enum in a struct

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 1620] std.conv.to fails for integer unsigned->signed conversion

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.006   |D2

--


[Issue 1803] Stack overflow on manifest constant of struct within struct

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 2492] ICE building on Linux with -lib option

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.021   |D2

--


[Issue 2415] DMD allows void foo(int i, ); function definition

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.019   |D2

--


[Issue 2476] std.stdio fails to compile

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.021   |D2

--


[Issue 2580] Documented WinMain for D2 is wrong

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.023   |D2

--


[Issue 2577] DMD crashes on foreach of undefined identifier

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.023   |D2

--


[Issue 1590] std.string.startsWith and endsWith please

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.006   |D2

--


[Issue 2368] Calling a function with an address of another function, then calling a returned object is rejected

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.019   |D2

--


[Issue 2478] std.math.poly Should be const-correct.

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.021   |D2

--


[Issue 2852] Cannot pass temporary result by reference (regression)

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.026   |D2

--


[Issue 2401] [module] type definition conflicts with itself imported through different module

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.019   |D2

--


[Issue 1990] Invariant associative arrays broken

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.012   |D2

--


[Issue 1795] Unreachable code in Phobos std.string

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.010   |D2

--


[Issue 2847] ICE(cod4.c) return const(struct) with real member

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.026   |D2

--


[Issue 2564] CTFE: the index in a tuple foreach is uninitialized (bogus error)

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.023   |D2

--


[Issue 3668] foreach over typedef'd array crashes dmd

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.032   |D2

--


[Issue 3439] std.range.Sequence.opIndex not consistent after calling popFront().

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.035   |D2

--


[Issue 3588] WithStatement rule references unspecified Symbol

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.036   |D2

--


[Issue 3400] scope(failure) is not allowed in contracts

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.031   |D2

--


[Issue 2958] std.getopt RangeError on missing arg

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

Andrei Alexandrescu  changed:

   What|Removed |Added

Version|2.030   |D2

--


  1   2   3   4   5   6   7   8   >