diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 823d79e7d0..7359056d32 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -11168,21 +11168,21 @@ void ClassLinker::SetEnablePublicSdkChecks([[maybe_unused]] bool enabled) { } bool ClassLinker::TransactionWriteConstraint( - [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Object> obj) const { + [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Object> obj) { // Should not be called on ClassLinker, only on AotClassLinker that overrides this. LOG(FATAL) << "UNREACHABLE"; UNREACHABLE(); } bool ClassLinker::TransactionWriteValueConstraint( - [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Object> value) const { + [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Object> value) { // Should not be called on ClassLinker, only on AotClassLinker that overrides this. LOG(FATAL) << "UNREACHABLE"; UNREACHABLE(); } bool ClassLinker::TransactionAllocationConstraint( - [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Class> klass) const { + [[maybe_unused]] Thread* self, [[maybe_unused]] ObjPtr<mirror::Class> klass) { // Should not be called on ClassLinker, only on AotClassLinker that overrides this. LOG(FATAL) << "UNREACHABLE"; UNREACHABLE(); |