We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9198e7e + c3b87a2 commit 0157652Copy full SHA for 0157652
src/util/expr.cpp
@@ -283,9 +283,9 @@ const source_locationt &exprt::find_source_location() const
283
284
forall_operands(it, (*this))
285
{
286
- const source_locationt &l=it->find_source_location();
287
- if(l.is_not_nil())
288
- return l;
+ const source_locationt &op_l = it->find_source_location();
+ if(op_l.is_not_nil())
+ return op_l;
289
}
290
291
return static_cast<const source_locationt &>(get_nil_irep());
0 commit comments