From: Malcolm Parsons Date: Mon, 8 May 2017 16:43:29 +0000 (+0000) Subject: [AST] Fix copy&paste error in comment. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28ce0e785fabd9a4ef260b2bd2ca6090f1149f63;p=clang [AST] Fix copy&paste error in comment. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302440 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index 573ea55de1..bba40e56b0 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -2478,7 +2478,7 @@ public: void setCapturedVLAType(const VariableArrayType *VLAType); /// getParent - Returns the parent of this field declaration, which - /// is the struct in which this method is defined. + /// is the struct in which this field is defined. const RecordDecl *getParent() const { return cast(getDeclContext()); }