diff options
Diffstat (limited to 'runtime/reference_table.cc')
-rw-r--r-- | runtime/reference_table.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/runtime/reference_table.cc b/runtime/reference_table.cc index c917d844ae..e454b20d76 100644 --- a/runtime/reference_table.cc +++ b/runtime/reference_table.cc @@ -232,10 +232,9 @@ void ReferenceTable::Dump(std::ostream& os, Table& entries) { DumpSummaryLine(os, prev, GetElementCount(prev), identical, equiv); } -void ReferenceTable::VisitRoots(RootCallback* visitor, void* arg, uint32_t tid, - RootType root_type) { +void ReferenceTable::VisitRoots(RootCallback* visitor, void* arg, const RootInfo& root_info) { for (GcRoot<mirror::Object>& root : entries_) { - root.VisitRoot(visitor, arg, tid, root_type); + root.VisitRoot(visitor, arg, root_info); } } |