diff options
Diffstat (limited to 'tools/lldb-mi/MICmnMIValueResult.h')
-rw-r--r-- | tools/lldb-mi/MICmnMIValueResult.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/tools/lldb-mi/MICmnMIValueResult.h b/tools/lldb-mi/MICmnMIValueResult.h index 7c8e9801e4a0a..cd96520b98f97 100644 --- a/tools/lldb-mi/MICmnMIValueResult.h +++ b/tools/lldb-mi/MICmnMIValueResult.h @@ -28,29 +28,26 @@ // list ==> "[]" | "[" value ( "," value )* "]" | "[" result ( "," result )* "]" // More information see: // http://ftp.gnu.org/old-gnu/Manuals/gdb-5.1.1/html_chapter/gdb_22.html -// Gotchas: None. -// Authors: Illya Rudkin 24/02/2014. -// Changes: None. //-- class CMICmnMIValueResult : public CMICmnMIValue { // Methods: public: - /* ctor */ CMICmnMIValueResult(void); + /* ctor */ CMICmnMIValueResult(); /* ctor */ CMICmnMIValueResult(const CMIUtilString &vVariable, const CMICmnMIValue &vValue); /* ctor */ CMICmnMIValueResult(const CMIUtilString &vVariable, const CMICmnMIValue &vValue, const bool vbUseSpacing); // - bool Add(const CMIUtilString &vVariable, const CMICmnMIValue &vValue); + void Add(const CMIUtilString &vVariable, const CMICmnMIValue &vValue); // Overridden: public: // From CMICmnBase - /* dtor */ ~CMICmnMIValueResult(void) override; + /* dtor */ ~CMICmnMIValueResult() override; // Methods: private: - bool BuildResult(void); - bool BuildResult(const CMIUtilString &vVariable, const CMICmnMIValue &vValue); + void BuildResult(); + void BuildResult(const CMIUtilString &vVariable, const CMICmnMIValue &vValue); // Attributes: private: |