Author Topic: Breakpoint in constructor/destructor  (Read 25243 times)

Offline Bonanza

  • Multiple posting newcomer
  • *
  • Posts: 34
  • Engineer
Re: Breakpoint in constructor/destructor
« Reply #15 on: April 29, 2006, 03:27:45 pm »
That works:
Code
> rbreak Point2D::Point2D
Breakpoint 2 at 0x4013c2: file main.cpp, line 36.
void Point2D::Point2D();
Breakpoint 3 at 0x4013d2: file main.cpp, line 36.
void Point2D::Point2D();
Breakpoint 4 at 0x4013e3: file main.cpp, line 42.
void Point2D::Point2D(Point2D const&);
Breakpoint 5 at 0x401411: file main.cpp, line 42.
void Point2D::Point2D(Point2D const&);
Breakpoint 6 at 0x4013a9: file main.cpp, line 30.
void Point2D::Point2D(int, int);
Breakpoint 7 at 0x401393: file main.cpp, line 30.
void Point2D::Point2D(int, int);
(gdb)

Thanks for the workaround :D

Any plans to make this less troublesome at the moment :D?