Index: source/Expression/ExpressionSourceCode.cpp =================================================================== --- source/Expression/ExpressionSourceCode.cpp (revision 258199) +++ source/Expression/ExpressionSourceCode.cpp (working copy) @@ -106,8 +106,6 @@ { case CURRENT_FILE_NOT_YET_PUSHED: return true; - case CURRENT_FILE_POPPED: - return false; case CURRENT_FILE_PUSHED: // If we are in file included in the current file, // the entry should be added. @@ -118,6 +116,8 @@ return false; else return true; + default: + return false; } } Index: source/Target/Process.cpp =================================================================== --- source/Target/Process.cpp (revision 258199) +++ source/Target/Process.cpp (working copy) @@ -1489,12 +1489,6 @@ { switch (m_private_state.GetValue()) { - case eStateInvalid: - case eStateUnloaded: - case eStateDetached: - case eStateExited: - return false; - case eStateConnected: case eStateAttaching: case eStateLaunching: @@ -1504,6 +1498,8 @@ case eStateCrashed: case eStateSuspended: return true; + default: + return false; } }