diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 9d2755c866..c64c137e90 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -2358,7 +2358,7 @@ void ClassLinker::DeleteClassLoader(Thread* self, const ClassLoaderData& data, b // Cleanup references to single implementation ArtMethods that will be deleted. if (cleanup_cha) { CHAOnDeleteUpdateClassVisitor visitor(data.allocator); - data.class_table->Visit<CHAOnDeleteUpdateClassVisitor, kWithoutReadBarrier>(visitor); + data.class_table->Visit<kWithoutReadBarrier>(visitor); } { MutexLock lock(self, critical_native_code_with_clinit_check_lock_); |