[Lldb-commits] [lldb] r183024 - Small code cleanups
Enrico Granata
egranata at apple.com
Fri May 31 10:43:40 PDT 2013
Author: enrico
Date: Fri May 31 12:43:40 2013
New Revision: 183024
URL: http://llvm.org/viewvc/llvm-project?rev=183024&view=rev
Log:
Small code cleanups
Modified:
lldb/trunk/include/lldb/Core/ValueObject.h
lldb/trunk/source/Core/ValueObject.cpp
Modified: lldb/trunk/include/lldb/Core/ValueObject.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/ValueObject.h?rev=183024&r1=183023&r2=183024&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/ValueObject.h (original)
+++ lldb/trunk/include/lldb/Core/ValueObject.h Fri May 31 12:43:40 2013
@@ -1104,7 +1104,7 @@ public:
}
//------------------------------------------------------------------
- /// Find out if a SBValue might have children.
+ /// Find out if a ValueObject might have children.
///
/// This call is much more efficient than CalculateNumChildren() as
/// it doesn't need to complete the underlying type. This is designed
@@ -1116,7 +1116,7 @@ public:
/// doing any expensive type completion.
///
/// @return
- /// Returns \b true if the SBValue might have children, or \b
+ /// Returns \b true if the ValueObject might have children, or \b
/// false otherwise.
//------------------------------------------------------------------
virtual bool
Modified: lldb/trunk/source/Core/ValueObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ValueObject.cpp?rev=183024&r1=183023&r2=183024&view=diff
==============================================================================
--- lldb/trunk/source/Core/ValueObject.cpp (original)
+++ lldb/trunk/source/Core/ValueObject.cpp Fri May 31 12:43:40 2013
@@ -4315,6 +4315,7 @@ ValueObject::GetDynamicValueType ()
}
return lldb::eNoDynamicValues;
}
+
lldb::Format
ValueObject::GetFormat () const
{
More information about the lldb-commits
mailing list