CDB: Only step in frame if it has source information.

Change-Id: I9cf1fae00627bb6bf6bdf79cb99fa173df66ad94
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
David Schulz
2013-02-27 23:59:23 -08:00
parent e3587e8f0d
commit e963a43b32
2 changed files with 19 additions and 7 deletions

View File

@@ -181,7 +181,8 @@ private:
};
enum ParseStackResultFlags // Flags returned by parseStackTrace
{
ParseStackStepInto = 1 // Need to execute a step, hit on a call frame in "Step into"
ParseStackStepInto = 1, // Need to execute a step, hit on a call frame in "Step into"
ParseStackStepOut = 2 // Need to step out, hit on a frame without debug information
};