summaryrefslogtreecommitdiffstats
path: root/clang/lib/Analysis/UninitializedValues.cpp
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-06-06 20:45:41 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-06-06 20:45:41 +0000
commit40ed29730b2656796cd6085148f7aef1886040cf (patch)
tree939094a1639d8564f8e5044bef548315b588ff32 /clang/lib/Analysis/UninitializedValues.cpp
parent3f87e3b7073a954b9f1a600e0cf8149e1e043134 (diff)
downloadbcm5719-llvm-40ed29730b2656796cd6085148f7aef1886040cf.tar.gz
bcm5719-llvm-40ed29730b2656796cd6085148f7aef1886040cf.zip
Revert Decl's iterators back to pointer value_type rather than reference value_type
In addition, I've made the pointer and reference typedef 'void' rather than T* just so they can't get misused. I would've omitted them entirely but std::distance likes them to be there even if it doesn't use them. This rolls back r155808 and r155869. Review by Doug Gregor incorporating feedback from Chandler Carruth. llvm-svn: 158104
Diffstat (limited to 'clang/lib/Analysis/UninitializedValues.cpp')
-rw-r--r--clang/lib/Analysis/UninitializedValues.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Analysis/UninitializedValues.cpp b/clang/lib/Analysis/UninitializedValues.cpp
index 13c6e4a783c..57dfab36fdd 100644
--- a/clang/lib/Analysis/UninitializedValues.cpp
+++ b/clang/lib/Analysis/UninitializedValues.cpp
@@ -61,7 +61,7 @@ void DeclToIndex::computeMap(const DeclContext &dc) {
DeclContext::specific_decl_iterator<VarDecl> I(dc.decls_begin()),
E(dc.decls_end());
for ( ; I != E; ++I) {
- const VarDecl *vd = &*I;
+ const VarDecl *vd = *I;
if (isTrackedVar(vd, &dc))
map[vd] = count++;
}
OpenPOWER on IntegriCloud