@@ -1887,7 +1887,8 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
18871887 bool force_repeat_command) {
18881888 lldb_private::telemetry::ScopedDispatcher<
18891889 lldb_private::telemetry:CommandInfo> helper (m_debugger);
1890- lldb_private::telemetry::TelemetryManager *ins = lldb_private::telemetry::TelemetryManager::GetInstance ();
1890+ lldb_private::telemetry::TelemetryManager *ins =
1891+ lldb_private::telemetry::TelemetryManager::GetInstance ();
18911892 const int command_id = ins->MakeNextCommandId ();
18921893
18931894 std::string command_string (command_line);
@@ -1896,7 +1897,7 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
18961897 std::string parsed_command_args;
18971898 CommandObject *cmd_obj = nullptr ;
18981899
1899- helper.DispatchNow ([&](lldb_private::telemetry: CommandInfo* info){
1900+ helper.DispatchNow ([&](lldb_private::telemetry : CommandInfo * info) {
19001901 info.command_id = command_id;
19011902 if (Target* target = GetExecutionContext ().GetTargetPtr ()) {
19021903 // If we have a target attached to this command, then get the UUID.
@@ -1910,7 +1911,7 @@ bool CommandInterpreter::HandleCommand(const char *command_line,
19101911 // Those will be collected by the on-exit-callback.
19111912 });
19121913
1913- helper.DispatchOnExit ([&](lldb_private::telemetry: CommandInfo* info) {
1914+ helper.DispatchOnExit ([&](lldb_private::telemetry : CommandInfo * info) {
19141915 // TODO: this is logging the time the command-handler finishes.
19151916 // But we may want a finer-grain durations too?
19161917 // (ie., the execute_time recorded below?)
0 commit comments