forked from OSchip/llvm-project
Handle eExpressionThreadVanished in error switch to handle
covered switch warning.
This commit is contained in:
parent
024098ae53
commit
7510aede62
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue