Hannes Domani
Hannes Domani
In this example: ``` struct S { int _i; long _l; }; struct S s[] = {{4, 5}, {94, 34}, {83, 95}}; int main() { return s[0]._i + s[2]._l; }...
### Windows Terminal version _No response_ ### Windows build number 10.0.19044.2486 ### Other Software _No response_ ### Steps to reproduce Compile and start the following program in a cmd or...
If a function returns a pointer to a struct, you can't access the members with ->. Basically I want that this test succeeds: ```diff diff --git a/tests/test.cc b/tests/test.cc index f3952f8..3c02623...
On Linux you can check in /sys/bus/event_source/devices/intel_pt/caps/ptwrite if it's supported, and then you have to set a specific bit when starting the trace. Is something similar possible on Windows as...
If you try to debug any executable that throws a c++ exception, you get this result (here with lldb): ``` * thread #1, stop reason = Exception 0xc00000ff encountered at...