Skip to content

Commit b046483

Browse files
committed
Renaming DAPConfiguration > Configuration.
1 parent 11ff511 commit b046483

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/tools/lldb-dap/DAP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ struct DAP {
156156
OutputRedirector out;
157157
OutputRedirector err;
158158
/// Configuration specified by the launch or attach commands.
159-
protocol::DAPConfiguration configuration;
159+
protocol::Configuration configuration;
160160
lldb::SBDebugger debugger;
161161
lldb::SBTarget target;
162162
Variables variables;

lldb/tools/lldb-dap/Protocol/ProtocolRequests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ bool fromJSON(const llvm::json::Value &, InitializeRequestArguments &,
119119
using InitializeResponseBody = std::optional<Capabilities>;
120120

121121
/// DAP Launch and Attach common configurations.
122-
struct DAPConfiguration {
122+
struct Configuration {
123123
/// Specify a working directory to use when launching `lldb-dap`. If the debug
124124
/// information in your executable contains relative paths, this option can be
125125
/// used so that `lldb-dap` can find source files and object files that have

0 commit comments

Comments
 (0)