Skip to content

Commit 5cb4ef2

Browse files
committed
Attempt to revert unnecessary format changes
1 parent f69afe4 commit 5cb4ef2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

lldb/include/lldb/API/SBCommandInterpreter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,13 +247,13 @@ class SBCommandInterpreter {
247247
lldb::SBStringList &matches,
248248
lldb::SBStringList &descriptions);
249249

250-
/// Returns whether an interrupt flag was raised either by the SBDebugger -
250+
/// Returns whether an interrupt flag was raised either by the SBDebugger -
251251
/// when the function is not running on the RunCommandInterpreter thread, or
252252
/// by SBCommandInterpreter::InterruptCommand if it is. If your code is doing
253-
/// interruptible work, check this API periodically, and interrupt if it
253+
/// interruptible work, check this API periodically, and interrupt if it
254254
/// returns true.
255255
bool WasInterrupted() const;
256-
256+
257257
/// Interrupts the command currently executing in the RunCommandInterpreter
258258
/// thread.
259259
///

lldb/include/lldb/Interpreter/CommandInterpreter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ class CommandInterpreter : public Broadcaster,
242242
eCommandTypesAllThem = 0xFFFF //< all commands
243243
};
244244

245-
// The CommandAlias and CommandInterpreter both have a hand in
245+
// The CommandAlias and CommandInterpreter both have a hand in
246246
// substituting for alias commands. They work by writing special tokens
247247
// in the template form of the Alias command, and then detecting them when the
248248
// command is executed. These are the special tokens:
@@ -580,7 +580,7 @@ class CommandInterpreter : public Broadcaster,
580580
void SetEchoCommentCommands(bool enable);
581581

582582
bool GetRepeatPreviousCommand() const;
583-
583+
584584
bool GetRequireCommandOverwrite() const;
585585

586586
const CommandObject::CommandMap &GetUserCommands() const {

lldb/source/API/SBCommandInterpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ bool SBCommandInterpreter::WasInterrupted() const {
151151

152152
bool SBCommandInterpreter::InterruptCommand() {
153153
LLDB_INSTRUMENT_VA(this);
154-
154+
155155
return (IsValid() ? m_opaque_ptr->InterruptCommand() : false);
156156
}
157157

0 commit comments

Comments
 (0)