Skip to content

Commit c9e1c52

Browse files
[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]
1 parent b668b64 commit c9e1c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/lldb-dap/Handler/StepInTargetsRequestHandler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ StepInTargetsRequestHandler::Run(const StepInTargetsArguments &args) const {
8686
}
8787
}
8888
return body;
89-
};
89+
}
9090

9191
} // namespace lldb_dap

0 commit comments

Comments
 (0)