Handle eExpressionThreadVanished in error switch to handle

covered switch warning.
This commit is contained in:
Eric Christopher 2020-05-22 13:42:09 -07:00
parent 024098ae53
commit 7510aede62
1 changed files with 5 additions and 0 deletions

View File

@ -1620,6 +1620,11 @@ Status CommandInterpreter::PreprocessCommand(std::string &command) {
"expression '%s'",
expr_str.c_str());
break;
case eExpressionThreadVanished:
error.SetErrorStringWithFormat(
"expression thread vanished for the expression '%s'",
expr_str.c_str());
break;
}
}
}