diff options
Diffstat (limited to 'runtime/lambda/box_table.h')
-rw-r--r-- | runtime/lambda/box_table.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/lambda/box_table.h b/runtime/lambda/box_table.h index c6d3d0c0fb..312d811b9b 100644 --- a/runtime/lambda/box_table.h +++ b/runtime/lambda/box_table.h @@ -18,7 +18,6 @@ #include "base/allocator.h" #include "base/hash_map.h" -#include "base/out.h" #include "gc_root.h" #include "base/macros.h" #include "base/mutex.h" @@ -52,7 +51,7 @@ class BoxTable FINAL { SHARED_REQUIRES(Locks::mutator_lock_) REQUIRES(!Locks::lambda_table_lock_); // Unboxes an object back into the lambda. Returns false and throws an exception on failure. - bool UnboxLambda(mirror::Object* object, out<ClosureType> out_closure) + bool UnboxLambda(mirror::Object* object, ClosureType* out_closure) SHARED_REQUIRES(Locks::mutator_lock_); // Sweep weak references to lambda boxes. Update the addresses if the objects have been |