diff options
| author | 2015-07-15 01:02:08 +0000 | |
|---|---|---|
| committer | 2015-07-15 01:02:09 +0000 | |
| commit | 19315c121047edcedf2828fea50f3208d799eca2 (patch) | |
| tree | 3454c66ba73a6bdc7905d662fabcca8bbdee15e6 /runtime/runtime.h | |
| parent | 70451aea314de4743d2d15a48d33201a897c190d (diff) | |
| parent | 97509954404d031594b2ecbda607314d169d512e (diff) | |
Merge "Clean up GC callbacks to be virtual methods"
Diffstat (limited to 'runtime/runtime.h')
| -rw-r--r-- | runtime/runtime.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index c1fa55a90d..9ee96a3d1b 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -336,7 +336,7 @@ class Runtime { // Sweep system weaks, the system weak is deleted if the visitor return null. Otherwise, the // system weak is updated to be the visitor's returned value. - void SweepSystemWeaks(IsMarkedCallback* visitor, void* arg) + void SweepSystemWeaks(IsMarkedVisitor* visitor) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); // Constant roots are the roots which never change after the runtime is initialized, they only |