diff options
author | Anders Carlsson <andersca@mac.com> | 2009-07-11 00:34:39 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-07-11 00:34:39 +0000 |
commit | 6a75cd9c1d54625fca7b5477ab9545bcdbd85ea4 (patch) | |
tree | 6dfd55ed4a291d2126b9a954d6f5346b2779b873 /lib/Parse/ParseDecl.cpp | |
parent | 496e89f8d55f7a931c246e820c10f7296a246ac2 (diff) |
Implement more of C++0x 'auto'. A variable with an auto type specifier must have an initializer. Also, move some tests around to match the C++0x draft better.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75322 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseDecl.cpp')
-rw-r--r-- | lib/Parse/ParseDecl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 5566751fb9..1ddd20a9ec 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -465,7 +465,9 @@ Parser::DeclPtrTy Parser::ParseDeclarationAfterDeclarator(Declarator &D, CommaLocs.data(), RParenLoc); } } else { - Actions.ActOnUninitializedDecl(ThisDecl); + bool TypeContainsUndeducedAuto = + D.getDeclSpec().getTypeSpecType() == DeclSpec::TST_auto; + Actions.ActOnUninitializedDecl(ThisDecl, TypeContainsUndeducedAuto); } return ThisDecl; |