diff options
Diffstat (limited to 'include/lldb/Interpreter/CommandAlias.h')
-rw-r--r-- | include/lldb/Interpreter/CommandAlias.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/lldb/Interpreter/CommandAlias.h b/include/lldb/Interpreter/CommandAlias.h index c2a7a383f35a..1e186d77f8e6 100644 --- a/include/lldb/Interpreter/CommandAlias.h +++ b/include/lldb/Interpreter/CommandAlias.h @@ -36,11 +36,11 @@ public: bool WantsCompletion() override; - int HandleCompletion(CompletionRequest &request) override; + void HandleCompletion(CompletionRequest &request) override; - int HandleArgumentCompletion( - CompletionRequest &request, - OptionElementVector &opt_element_vector) override; + void + HandleArgumentCompletion(CompletionRequest &request, + OptionElementVector &opt_element_vector) override; Options *GetOptions() override; |