summaryrefslogtreecommitdiff
path: root/runtime/quick_exception_handler.cc
diff options
context:
space:
mode:
author Chih-Hung Hsieh <chh@google.com> 2016-04-29 14:27:41 -0700
committer Chih-Hung Hsieh <chh@google.com> 2016-04-29 14:27:41 -0700
commit471118ef120cb075ccba9e307e2c1b9b5a584840 (patch)
tree584184f923f2f7f9931893f6a87d21239eab0451 /runtime/quick_exception_handler.cc
parent3f8bcb5e9e15f5a93ff0416d7b32aefd3761e146 (diff)
Fix google-explicit-constructor warnings.
Bug: 28341362 Change-Id: Ic7e236a7f58c4021a3f8fb4536a6457d262fe62e
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r--runtime/quick_exception_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc
index a785ecba3b..e32f86b404 100644
--- a/runtime/quick_exception_handler.cc
+++ b/runtime/quick_exception_handler.cc
@@ -611,7 +611,7 @@ void QuickExceptionHandler::DoLongJump(bool smash_caller_saves) {
// Prints out methods with their type of frame.
class DumpFramesWithTypeStackVisitor FINAL : public StackVisitor {
public:
- DumpFramesWithTypeStackVisitor(Thread* self, bool show_details = false)
+ explicit DumpFramesWithTypeStackVisitor(Thread* self, bool show_details = false)
SHARED_REQUIRES(Locks::mutator_lock_)
: StackVisitor(self, nullptr, StackVisitor::StackWalkKind::kIncludeInlinedFrames),
show_details_(show_details) {}