March 02, 2022 Issues » [Issue 22838] New: std.bitmanip.BitArray.count() reads beyond data when data size is integer size_t multiple | |||
|---|---|---|---|
| |||
...overflow on address 0x00016d251750 at pc 0x00010402fce0 bp 0x00016d251680 sp 0x00016d251678 READ of size 8... | |||
January 12, 2022 IDEs » Re: Visual D 1.2.0-rc1 available | |||
|---|---|---|---|
| |||
...BP's it does go in to the debugger, more or less but with BP... | |||
November 27, 2021 Issues » [Issue 21537] Pointer to function pointer cannot be converted to pointer to const function pointer with lower attributes | |||
|---|---|---|---|
| |||
...Fine
}{
const(A)* ap;
const(B)* bp;
ap = bp; // Accepted
}{
SafeFP safeFp;
SysFP sysFp;
sysFp... | |||
November 22, 2021 Issues » [Issue 21537] Function pointer* pointer' attributes not covariant when referencing (delegates' are) | |||
|---|---|---|---|
| |||
...A* ap;
B* bp;
ap = bp; // Error: cannot implicitly convert expression `bp` of type
`B... | |||
October 04, 2021 Issues » [Issue 22358] Allocations from foreign threads lead to crash | |||
|---|---|---|---|
| |||
...SEGV on unknown address 0x000000000000 (pc 0x55f694a96fd9 bp 0x7f791bdfecf0 sp 0x7f791bdfec70 T3) ==28==The signal... | |||
August 27, 2021 Debuggers » Dexed can be used to debug program that are not written in D | |||
|---|---|---|---|
| |||
...to do things such as: add more bp, evaluate expressions, change the CPU register values... | |||
April 13, 2021 General » Re: WinDbg | |||
|---|---|---|---|
| |||
...bp _d_throwc -for ldc -g builds >bp d_throw_exception Break @start -ldc >bp... | |||
February 23, 2021 LDC » Re: Debugging with LLDB on Windows | |||
|---|---|---|---|
| |||
...works. Also Windbg commands worked fine bp Dmain, bp d_throw_exception working (without leading... | |||
January 10, 2021 Learn » Re: [Understanding] Classes and delegate inheritance vs function pointers | |||
|---|---|---|---|
| |||
...you are right: ``` Derived derived; Base* bp=&derived; *bp=base; derived.method() //ouch ``` I mean... | |||
January 09, 2021 Learn » Re: [Understanding] Classes and delegate inheritance vs function pointers | |||
|---|---|---|---|
| |||
...referencing meant. Derived d = new Derived(); Base* bp = &d; // fails const(Base) cbp = &d; // compiles... | |||
Copyright © 1999-2021 by the D Language Foundation