aboutsummaryrefslogtreecommitdiff
path: root/lib/Sema/SemaType.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-08-26 23:00:36 +0000
committerAnders Carlsson <andersca@mac.com>2009-08-26 23:00:36 +0000
commitc56642301eaa6335ea9ad210ff923080f841464b (patch)
treec3d825927fbc8b1410161a4f4016d8b33beca20d /lib/Sema/SemaType.cpp
parentd497ba7ca5e52cd4523822055abd5e89dfec1800 (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.cpp4
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,