Skip to content

Commit f09ff9b

Browse files
fixup! Use auto for iterator types
1 parent 66ae565 commit f09ff9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solvers/prop/prop_conv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ literalt prop_conv_solvert::convert(const exprt &expr)
172172
}
173173

174174
// check cache first
175-
auto result = cache.insert(std::pair<exprt, literalt>(expr, literalt()));
175+
auto result = cache.insert({expr, literalt()});
176176

177177
if(!result.second)
178178
return result.first->second;

0 commit comments

Comments
 (0)