Clarify getName() comment.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77383 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Devang Patel 2009-07-28 22:30:52 +00:00
parent b0d9c3e7fd
commit dd04246fa2

View File

@ -116,10 +116,10 @@ public:
/// modified. /// modified.
/// ///
/// This is currently guaranteed to return a StringRef for which data() points /// This is currently guaranteed to return a StringRef for which data() points
/// to a valid null terminated string. This usage is deprecated, however, and /// to a valid null terminated string. The use of StringRef.data() is
/// clients should not rely on it. If such behavior is needed, clients should /// deprecated here, however, and clients should not rely on it. If such
/// use getNameStr() or switch to an interface that does not depend on null /// behavior is needed, clients should use expensive getNameStr(), or switch
/// termination. /// to an interface that does not depend on null termination.
StringRef getName() const; StringRef getName() const;
/// getNameStr() - Return the name of the specified value, *constructing a /// getNameStr() - Return the name of the specified value, *constructing a