[lldb] On Windows, silence warning with latest MSVC

This fixes:
```
[6083/7449] Building CXX object tools\lldb\source\Commands\CMakeFiles\lldbCommands.dir\CommandObjectFrame.cpp.obj
C:\git\llvm-project\lldb\source\Commands\CommandObjectFrame.cpp(497) : warning C4715: 'CommandObjectFrameVariable::ScopeRequested': not all control paths return a value
```
This commit is contained in:
Alexandre Ganea 2024-01-16 12:32:06 -05:00
parent 61b5bf85f0
commit 9110c2b402

View File

@ -494,6 +494,7 @@ protected:
case eValueTypeVTableEntry:
return false;
}
llvm_unreachable("Unexpected scope value");
}
/// Finds all the variables in `all_variables` whose name matches `regex`,