summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaDecl.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-03-15 00:22:18 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-03-15 00:22:18 +0000
commiteece8c3993bd359785d385de1f2bcfda338db77d (patch)
treeef22bd0c5e6a6165df65f2afaeef91dff293a311 /clang/lib/Sema/SemaDecl.cpp
parentc42d838d9fa08b51866b058d99d6fe91ebb26c7a (diff)
downloadbcm5719-llvm-eece8c3993bd359785d385de1f2bcfda338db77d.tar.gz
bcm5719-llvm-eece8c3993bd359785d385de1f2bcfda338db77d.zip
Remove a variable rendered unused by r152750.
llvm-svn: 152758
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r--clang/lib/Sema/SemaDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp
index 3363af324c8..ab1a1b40251 100644
--- a/clang/lib/Sema/SemaDecl.cpp
+++ b/clang/lib/Sema/SemaDecl.cpp
@@ -7954,7 +7954,7 @@ Decl *Sema::ActOnTag(Scope *S, unsigned TagSpec, TagUseKind TUK,
// C++0x 7.2p2: The type-specifier-seq of an enum-base shall name an
// integral type; any cv-qualification is ignored.
TypeSourceInfo *TI = 0;
- QualType T = GetTypeFromParser(UnderlyingType.get(), &TI);
+ GetTypeFromParser(UnderlyingType.get(), &TI);
EnumUnderlying = TI;
if (CheckEnumUnderlyingType(TI))
OpenPOWER on IntegriCloud