diff options
| author | Manuel Klimek <klimek@google.com> | 2013-08-22 12:12:24 +0000 |
|---|---|---|
| committer | Manuel Klimek <klimek@google.com> | 2013-08-22 12:12:24 +0000 |
| commit | 2fdbea2819448ecb07ba69c5a70eb49691007880 (patch) | |
| tree | ab24c9e98fe9246a5220986c29e031105ad9323c /clang/lib/AST/ASTImporter.cpp | |
| parent | 1559dd8a1cd7cb372046148165a5d0409aff4d82 (diff) | |
| download | bcm5719-llvm-2fdbea2819448ecb07ba69c5a70eb49691007880.tar.gz bcm5719-llvm-2fdbea2819448ecb07ba69c5a70eb49691007880.zip | |
Revert "Implement a rudimentary form of generic lambdas."
This reverts commit 606f5d7a99b11957e057e4cd1f55f931f66a42c7.
llvm-svn: 189004
Diffstat (limited to 'clang/lib/AST/ASTImporter.cpp')
| -rw-r--r-- | clang/lib/AST/ASTImporter.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/AST/ASTImporter.cpp b/clang/lib/AST/ASTImporter.cpp index f03b66dfd88..922172701f0 100644 --- a/clang/lib/AST/ASTImporter.cpp +++ b/clang/lib/AST/ASTImporter.cpp @@ -1709,9 +1709,7 @@ QualType ASTNodeImporter::VisitAutoType(const AutoType *T) { return QualType(); } - return Importer.getToContext().getAutoType(ToDeduced, T->isDecltypeAuto(), - /*IsDependent*/false, - T->containsUnexpandedParameterPack()); + return Importer.getToContext().getAutoType(ToDeduced, T->isDecltypeAuto()); } QualType ASTNodeImporter::VisitRecordType(const RecordType *T) { |

