diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp')
-rw-r--r-- | contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp b/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp index 1bb8c9f6955a..8dc52650a331 100644 --- a/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp +++ b/contrib/llvm-project/lldb/source/Interpreter/OptionValueFormatEntity.cpp @@ -116,7 +116,7 @@ lldb::OptionValueSP OptionValueFormatEntity::DeepCopy() const { return OptionValueSP(new OptionValueFormatEntity(*this)); } -size_t OptionValueFormatEntity::AutoComplete(CommandInterpreter &interpreter, - CompletionRequest &request) { - return FormatEntity::AutoComplete(request); +void OptionValueFormatEntity::AutoComplete(CommandInterpreter &interpreter, + CompletionRequest &request) { + FormatEntity::AutoComplete(request); } |