We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcdb0d commit 163847cCopy full SHA for 163847c
lldb/tools/lldb-dap/DAP.cpp
@@ -1222,8 +1222,6 @@ void DAP::SetConfiguration(const protocol::Configuration &config,
1222
}
1223
1224
void DAP::SetFrameFormat(llvm::StringRef format) {
1225
- if (format.empty())
1226
- return;
1227
lldb::SBError error;
1228
frame_format = lldb::SBFormat(format.str().c_str(), error);
1229
if (error.Fail()) {
@@ -1236,8 +1234,6 @@ void DAP::SetFrameFormat(llvm::StringRef format) {
1236
1234
1237
1235
1238
void DAP::SetThreadFormat(llvm::StringRef format) {
1239
1240
1241
1242
thread_format = lldb::SBFormat(format.str().c_str(), error);
1243
0 commit comments