diff options
| author | 2018-09-08 21:46:00 +0000 | |
|---|---|---|
| committer | 2018-09-08 21:46:00 +0000 | |
| commit | cba17e81e71491d3994a1198a740b563a7ab1f57 (patch) | |
| tree | f11e57c00bedf9349b0a21a46b4896bdc9b5e4a7 /runtime/quick_exception_handler.cc | |
| parent | e7c9164cb7b6f964000df8114d79e6fb544ca95c (diff) | |
| parent | fa6a1b0a1d9d186a0ad9bb413a4e49f1ffd187d8 (diff) | |
Merge "ART: Continue adding override annotations"
Diffstat (limited to 'runtime/quick_exception_handler.cc')
| -rw-r--r-- | runtime/quick_exception_handler.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 7b92151c66..e882e7370a 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -165,7 +165,7 @@ class InstrumentationStackVisitor : public StackVisitor {      CHECK_NE(frame_depth_, kInvalidFrameDepth);    } -  bool VisitFrame() REQUIRES_SHARED(Locks::mutator_lock_) { +  bool VisitFrame() override REQUIRES_SHARED(Locks::mutator_lock_) {      size_t current_frame_depth = GetFrameDepth();      if (current_frame_depth < frame_depth_) {        CHECK(GetMethod() != nullptr); |