diff options
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h')
| -rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h | 19 | 
1 files changed, 9 insertions, 10 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h b/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h index 0a96041d2d31..d67aa43365d5 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h @@ -16,19 +16,18 @@  // Other libraries and framework includes  // Project includes -#include "lldb/lldb-types.h"  #include "lldb/Interpreter/CommandObjectMultiword.h" +#include "lldb/lldb-types.h"  namespace lldb_private { -     -    class CommandObjectPlugin : public CommandObjectMultiword -    { -    public: -        CommandObjectPlugin (CommandInterpreter &interpreter); -         -        ~CommandObjectPlugin() override; -    }; -     + +class CommandObjectPlugin : public CommandObjectMultiword { +public: +  CommandObjectPlugin(CommandInterpreter &interpreter); + +  ~CommandObjectPlugin() override; +}; +  } // namespace lldb_private  #endif // liblldb_CommandObjectPlugin_h_  | 
