【发布时间】:2012-06-27 08:45:53
【问题描述】:
我的断点有一个奇怪的行为。 当我在我的软件运行时在对话框函数中设置一个时,断点会直接移动到同一个函数但在另一个对话框类中。
例如:
void MyDialog1::MyFunction()
{
// some code where I set my break-point
}
void MyDialog2::MyFunction()
{
// some code where the break-point moves by "itself"
}
所有优化功能均已关闭。 我不明白这个魔法是怎么做到的...... 这可能是我的 PDB 文件在某种程度上损坏了吗? 谢谢。
【问题讨论】:
标签: debugging visual-studio-2008 breakpoints