r335655 - [AST] Fix typo in LazyOffsetPtr::get docs (NFC)
Brian Gesiak via cfe-commits
cfe-commits at lists.llvm.org
Tue Jun 26 13:05:18 PDT 2018
Author: modocache
Date: Tue Jun 26 13:05:18 2018
New Revision: 335655
URL: http://llvm.org/viewvc/llvm-project?rev=335655&view=rev
Log:
[AST] Fix typo in LazyOffsetPtr::get docs (NFC)
Modified:
cfe/trunk/include/clang/AST/ExternalASTSource.h
Modified: cfe/trunk/include/clang/AST/ExternalASTSource.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ExternalASTSource.h?rev=335655&r1=335654&r2=335655&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ExternalASTSource.h (original)
+++ cfe/trunk/include/clang/AST/ExternalASTSource.h Tue Jun 26 13:05:18 2018
@@ -393,7 +393,7 @@ public:
/// Whether this pointer is currently stored as an offset.
bool isOffset() const { return Ptr & 0x01; }
- /// Retrieve the pointer to the AST node that this lazy pointer
+ /// Retrieve the pointer to the AST node that this lazy pointer points to.
///
/// \param Source the external AST source.
///
More information about the cfe-commits
mailing list