Skip to content

Commit d22fc94

Browse files
Address feedback: spell out type
1 parent b11daf1 commit d22fc94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/StaticAnalyzer/Core/RegionStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2657,7 +2657,7 @@ RegionStoreManager::bindArray(LimitedRegionBindingsConstRef B,
26572657
SVal V = getBinding(B.asStore(), *MRV, R->getValueType());
26582658
return bindAggregate(B, R, V);
26592659
}
2660-
if (auto const *Value = Init.getAsInteger()) {
2660+
if (llvm::APSInt const *Value = Init.getAsInteger()) {
26612661
auto SafeValue = StateMgr.getBasicVals().getValue(*Value);
26622662
return bindAggregate(B, R, nonloc::ConcreteInt(SafeValue));
26632663
}

0 commit comments

Comments
 (0)