r175339 - Documentation cleanup: use \brief, and don't repeat the identifier being
James Dennett
jdennett at google.com
Fri Feb 15 23:45:22 PST 2013
Author: jdennett
Date: Sat Feb 16 01:45:22 2013
New Revision: 175339
URL: http://llvm.org/viewvc/llvm-project?rev=175339&view=rev
Log:
Documentation cleanup: use \brief, and don't repeat the identifier being
declared.
Modified:
cfe/trunk/include/clang/Basic/SourceLocation.h
Modified: cfe/trunk/include/clang/Basic/SourceLocation.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/SourceLocation.h?rev=175339&r1=175338&r2=175339&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/SourceLocation.h (original)
+++ cfe/trunk/include/clang/Basic/SourceLocation.h Sat Feb 16 01:45:22 2013
@@ -165,7 +165,7 @@ public:
return (void*)(uintptr_t)getRawEncoding();
}
- /// getFromPtrEncoding - Turn a pointer encoding of a SourceLocation object
+ /// \brief Turn a pointer encoding of a SourceLocation object back
/// into a real SourceLocation.
static SourceLocation getFromPtrEncoding(const void *Encoding) {
return getFromRawEncoding((unsigned)(uintptr_t)Encoding);
More information about the cfe-commits
mailing list