GDB not breaking on breakpoints set on object creation in C++
- by Drew
Hi all,
I've got a c++ app, with the following main.cpp:
1: #include <stdio.h>
2: #include "HeatMap.h"
3: #include <iostream>
4:
5: int main (int argc, char * const argv[])
6: {
7: HeatMap heatMap();
8: printf("message");
9: return 0;
10: }
Everything compiles without errors, I'm using gdb (GNU gdb 6.3.50-20050815…