[lldb] Fix a warning

This patch fixes:

  lldb/tools/lldb-dap/Handler/StepInTargetsRequestHandler.cpp:89:2:
  error: extra ';' outside of a function is incompatible with C++98
  [-Werror,-Wc++98-compat-extra-semi]
This commit is contained in:
Kazu Hirata 2025-06-04 07:00:25 -07:00
parent b668b6439a
commit c9e1c52e2e

View File

@ -86,6 +86,6 @@ StepInTargetsRequestHandler::Run(const StepInTargetsArguments &args) const {
}
}
return body;
};
}
} // namespace lldb_dap