jamesragray
jamesragray
When trying to use vibe-d 0.9.5 I get the error message "Invalid variable: DC" when compiling with dub build . Using vibe-d 0.9.5-beta.1 works fine. My dub.selections looks like this:...
When using the all-included option on Ubuntu 21.10 with gcc version 11.2.0 (Ubuntu 11.2.0-7ubuntu2) got the following linking error: Linking... /usr/bin/ld.gold: error: /home/gavin/.dub/packages/d2sqlite3-1.0.0/d2sqlite3/sqlite3.o: requires dynamic R_X86_64_32 reloc which may overflow...
…ot handle range sentinels nicely. This may break user code, unlike (https://github.com/dlang/phobos/pull/8568)
Implemented: https://issues.dlang.org/show_bug.cgi?id=14543 This is somewhere between a bug fix and a new feature because you could argue the old behaviour is wrong.
It doesn't seem completely clear how to translate ordering of legacy pass manager to the new one. For instance the legacy pass manager does: ```c++ builder.addExtension(PassManagerBuilder::EP_LoopOptimizerEnd, legacyAddGarbageCollect2StackPass); ``` but with...
https://github.com/vibe-d/vibed.org/issues/70#issue-1630283779
The following code: ```d struct A { A[] as; auto opEquals(A x) { return as == x.as; } } void main() { } ``` produces the compiler error: ``` Error:...
The code: ```d struct Ele { long target; size_t n; } struct NumWays { long[] using; long[Ele] lookup; auto find(long target, size_t n) { if(n==0) { return target==0; } if(target...