diff options
Diffstat (limited to 'lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h')
-rw-r--r-- | lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h b/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h index 2ae3acf3d7e..2559a60a114 100644 --- a/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h +++ b/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h @@ -18,15 +18,18 @@ // Declarations: class CMIUtilString; -//++ ============================================================================ -// Details: MI proxy wrapper class to lldb::SBValue. The class provides functionality +//++ +//============================================================================ +// Details: MI proxy wrapper class to lldb::SBValue. The class provides +// functionality // to assist in the use of SBValue's particular function usage. //-- -class CMICmnLLDBProxySBValue -{ - // Statics: - public: - static bool GetValueAsSigned(const lldb::SBValue &vrValue, MIint64 &vwValue); - static bool GetValueAsUnsigned(const lldb::SBValue &vrValue, MIuint64 &vwValue); - static bool GetCString(const lldb::SBValue &vrValue, CMIUtilString &vwCString); +class CMICmnLLDBProxySBValue { + // Statics: +public: + static bool GetValueAsSigned(const lldb::SBValue &vrValue, MIint64 &vwValue); + static bool GetValueAsUnsigned(const lldb::SBValue &vrValue, + MIuint64 &vwValue); + static bool GetCString(const lldb::SBValue &vrValue, + CMIUtilString &vwCString); }; |