diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
commit | e81d9d49145e432d917eea3a70d2ae74dcad1d89 (patch) | |
tree | 9ed5e1a91f242e2cb5911577356e487a55c01b78 /tools/lldb-mi/MICmnMIValue.cpp | |
parent | 85d8ef8f1f0e0e063a8571944302be2d2026f823 (diff) |
Notes
Diffstat (limited to 'tools/lldb-mi/MICmnMIValue.cpp')
-rw-r--r-- | tools/lldb-mi/MICmnMIValue.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/lldb-mi/MICmnMIValue.cpp b/tools/lldb-mi/MICmnMIValue.cpp index 2f7041427d2b..d5895d70099b 100644 --- a/tools/lldb-mi/MICmnMIValue.cpp +++ b/tools/lldb-mi/MICmnMIValue.cpp @@ -1,4 +1,4 @@ -//===-- Platform.cpp --------------------------------------------*- C++ -*-===// +//===-- MICmnMIValue.cpp ----------------------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -18,7 +18,7 @@ // Return: None. // Throws: None. //-- -CMICmnMIValue::CMICmnMIValue(void) +CMICmnMIValue::CMICmnMIValue() : m_strValue(MIRSRC(IDS_WORD_INVALIDBRKTS)) , m_bJustConstructed(true) { @@ -31,7 +31,7 @@ CMICmnMIValue::CMICmnMIValue(void) // Return: None. // Throws: None. //-- -CMICmnMIValue::~CMICmnMIValue(void) +CMICmnMIValue::~CMICmnMIValue() { } @@ -46,7 +46,7 @@ CMICmnMIValue::~CMICmnMIValue(void) // Throws: None. //-- const CMIUtilString & -CMICmnMIValue::GetString(void) const +CMICmnMIValue::GetString() const { return m_strValue; } |