Skip to content

Commit 5f7840a

Browse files
Merge pull request diffblue#218 from diffblue/cleanup/typo
Typo in reachable
2 parents 78b3f53 + 95218a5 commit 5f7840a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cbmc/src/java_bytecode/ci_lazy_methods.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ bool ci_lazy_methodst::operator()(
6565
if(main_function.stop_convert)
6666
{
6767
// Failed, mark all functions in the given main class(es)
68-
// reaclass_hierarchyable.
69-
std::vector<irep_idt> reaclass_hierarchyable_classes;
68+
// reachable.
69+
std::vector<irep_idt> reachable_classes;
7070
if(!main_class.empty())
71-
reaclass_hierarchyable_classes.push_back(main_class);
71+
reachable_classes.push_back(main_class);
7272
else
73-
reaclass_hierarchyable_classes=main_jar_classes;
74-
for(const auto &classname : reaclass_hierarchyable_classes)
73+
reachable_classes=main_jar_classes;
74+
for(const auto &classname : reachable_classes)
7575
{
7676
const auto &methods=
7777
java_class_loader.class_map.at(classname).parsed_class.methods;

0 commit comments

Comments
 (0)