diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-26 23:00:36 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-26 23:00:36 +0000 |
commit | c56642301eaa6335ea9ad210ff923080f841464b (patch) | |
tree | c3d825927fbc8b1410161a4f4016d8b33beca20d /lib/Sema/SemaType.cpp | |
parent | d497ba7ca5e52cd4523822055abd5e89dfec1800 (diff) |
Remove another unused argument.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@80175 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaType.cpp')
-rw-r--r-- | lib/Sema/SemaType.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Sema/SemaType.cpp b/lib/Sema/SemaType.cpp index 2a74a874fa..9ca38e4ad7 100644 --- a/lib/Sema/SemaType.cpp +++ b/lib/Sema/SemaType.cpp @@ -1771,9 +1771,9 @@ void Sema::ProcessTypeAttributeList(QualType &Result, const AttributeList *AL) { /// @returns @c true if @p T is incomplete and a diagnostic was emitted, /// @c false otherwise. bool Sema::RequireCompleteType(SourceLocation Loc, QualType T, unsigned diag, - SourceRange Range1, SourceRange Range2) { + SourceRange Range1) { return RequireCompleteType(Loc, T, - PDiag(diag) << Range1 << Range2); + PDiag(diag) << Range1); } bool Sema::RequireCompleteType(SourceLocation Loc, QualType T, |