diff options
Diffstat (limited to 'lldb/include/lldb/Interpreter/OptionValueArgs.h')
-rw-r--r-- | lldb/include/lldb/Interpreter/OptionValueArgs.h | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/lldb/include/lldb/Interpreter/OptionValueArgs.h b/lldb/include/lldb/Interpreter/OptionValueArgs.h index ad9505af301..433679da134 100644 --- a/lldb/include/lldb/Interpreter/OptionValueArgs.h +++ b/lldb/include/lldb/Interpreter/OptionValueArgs.h @@ -18,26 +18,17 @@ namespace lldb_private { -class OptionValueArgs : public OptionValueArray -{ +class OptionValueArgs : public OptionValueArray { public: - OptionValueArgs () : - OptionValueArray (OptionValue::ConvertTypeToMask (OptionValue::eTypeString)) - { - } - - ~OptionValueArgs() override - { - } - - size_t - GetArgs (Args &args); - - Type - GetType() const override - { - return eTypeArgs; - } + OptionValueArgs() + : OptionValueArray( + OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {} + + ~OptionValueArgs() override {} + + size_t GetArgs(Args &args); + + Type GetType() const override { return eTypeArgs; } }; } // namespace lldb_private |