summaryrefslogtreecommitdiffstats
path: root/runtime/interpreter/interpreter_common.h
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2015-08-04 11:18:43 -0700
committerIgor Murashkin <iam@google.com>2015-08-04 11:19:56 -0700
commitb1d8c314b55bb2df2b2bb72a3daaf5db65b7ebc7 (patch)
tree87e8252ee6ca23138f867989a098b7c4338c21a5 /runtime/interpreter/interpreter_common.h
parent1d558db0bcd841140f6fe1c6ba2e9a6de131649d (diff)
downloadart-b1d8c314b55bb2df2b2bb72a3daaf5db65b7ebc7.tar.gz
art-b1d8c314b55bb2df2b2bb72a3daaf5db65b7ebc7.tar.bz2
art-b1d8c314b55bb2df2b2bb72a3daaf5db65b7ebc7.zip
Revert "cleanup: Replace pointers with out-parameters and fix-up formatting"
This reverts commit a315f5c546b796f55f4872bb6efc15eb858d9639. -- Revert "runtime: cleanup class_linker out-parameters and formatting" This reverts commit bc1d78daa463572c5a770cdca858a3b51d8e1b7b. -- Revert "base: replace raw pointers for out-parameters with safer out<T>" This reverts commit fb326cffc679cab8eb873b9e44795706f023cb3c.
Diffstat (limited to 'runtime/interpreter/interpreter_common.h')
-rw-r--r--runtime/interpreter/interpreter_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_common.h b/runtime/interpreter/interpreter_common.h
index a6cccef617..2486a983fd 100644
--- a/runtime/interpreter/interpreter_common.h
+++ b/runtime/interpreter/interpreter_common.h
@@ -553,7 +553,7 @@ static inline bool DoUnboxLambda(Thread* self,
ArtMethod* unboxed_closure = nullptr;
// Raise an exception if unboxing fails.
if (!Runtime::Current()->GetLambdaBoxTable()->UnboxLambda(boxed_closure_object,
- outof(unboxed_closure))) {
+ &unboxed_closure)) {
CHECK(self->IsExceptionPending());
return false;
}