Thanks for your help. I am Chinese and my English is terrible!
All my source file were compiled with "-g" options.
When gdb stop at
Code:
operator_analyze.setSize(i);
, then I input "step", but gdb didn't come into the inner code of function
Code:
operator_analyze.setSize(i);
, gdb just executed the function like "next" .
If I run "stepi" many times, gdb can come into the body of
Code:
operator_analyze.setSize(i);
.
Does me explain clearly?