[Lldb-commits] [lldb] r215835 - Update comment for functionality not present in ObjectFile
Ed Maste
emaste at freebsd.org
Sun Aug 17 06:59:36 PDT 2014
Author: emaste
Date: Sun Aug 17 08:59:36 2014
New Revision: 215835
URL: http://llvm.org/viewvc/llvm-project?rev=215835&view=rev
Log:
Update comment for functionality not present in ObjectFile
It looks like this comment was not changed during some refactoring that
happened prior to the initial LLDB public release.
Modified:
lldb/trunk/include/lldb/Symbol/ObjectFile.h
Modified: lldb/trunk/include/lldb/Symbol/ObjectFile.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Symbol/ObjectFile.h?rev=215835&r1=215834&r2=215835&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Symbol/ObjectFile.h (original)
+++ lldb/trunk/include/lldb/Symbol/ObjectFile.h Sun Aug 17 08:59:36 2014
@@ -62,23 +62,11 @@ public:
/// for an object file.
///
/// Object files can be represented by the entire file, or by part of a
-/// file. Examples of object files that are part of a file include
-/// object files that contain information for multiple architectures in
-/// the same file, or archive files that contain multiple objects
-/// (ranlib archives) (possibly for multiple architectures as well).
+/// file. An example of a partial file ObjectFile is one that contains
+/// information for one of multiple architectures in the same file.
///
-/// Object archive files (e.g. ranlib archives) can contain
-/// multiple .o (object) files that must be selected by index or by name.
-/// The number of objects that an ObjectFile contains can be determined
-/// using the ObjectFile::GetNumObjects() const
-/// function, and followed by a call to
-/// ObjectFile::SelectObjectAtIndex (uint32_t) to change the currently
-/// selected object. Objects can also be selected by name using the
-/// ObjectFile::SelectObject(const char *) function.
-///
-/// Once an architecture is selected (and an object is selected for
-/// for archives), the object file information can be extracted from
-/// this abstract class.
+/// Once an architecture is selected the object file information can be
+/// extracted from this abstract class.
//----------------------------------------------------------------------
class ObjectFile:
public std::enable_shared_from_this<ObjectFile>,
More information about the lldb-commits
mailing list