diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-21 22:36:06 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-21 22:36:06 +0000 |
commit | 393612e6c7727f1fee50039254d9f434364cc0b2 (patch) | |
tree | 4e9dd5056b06b00c33f00080e854e20084d31dfe /lib/Parse/Parser.cpp | |
parent | ae87ce71010f3e2d7043d5c69c14ce70b3770551 (diff) |
Patch to accomodate Doug's comment on default
destruction of base/members for each destructor AST.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76663 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/Parser.cpp')
-rw-r--r-- | lib/Parse/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Parse/Parser.cpp b/lib/Parse/Parser.cpp index e7b0f33732..3260444240 100644 --- a/lib/Parse/Parser.cpp +++ b/lib/Parse/Parser.cpp @@ -666,7 +666,7 @@ Parser::DeclPtrTy Parser::ParseFunctionDefinition(Declarator &D, if (Tok.is(tok::colon)) ParseConstructorInitializer(Res); else - Actions.ActOnDefaultCDtorInitializers(Res); + Actions.ActOnDefaultCtorInitializers(Res); return ParseFunctionStatementBody(Res); } |