summaryrefslogtreecommitdiff
path: root/runtime/monitor_test.cc
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
committer Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
commit3887c468d731420e929e6ad3acf190d5431e94fc (patch)
tree67dacb849e722e33e118b97714a48e467c06cbd5 /runtime/monitor_test.cc
parent6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff)
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
Diffstat (limited to 'runtime/monitor_test.cc')
-rw-r--r--runtime/monitor_test.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/monitor_test.cc b/runtime/monitor_test.cc
index 1be637c8a5..e1173bb026 100644
--- a/runtime/monitor_test.cc
+++ b/runtime/monitor_test.cc
@@ -106,8 +106,7 @@ static void FillHeap(Thread* self, ClassLinker* class_linker,
class CreateTask : public Task {
public:
- explicit CreateTask(MonitorTest* monitor_test, uint64_t initial_sleep, int64_t millis,
- bool expected) :
+ CreateTask(MonitorTest* monitor_test, uint64_t initial_sleep, int64_t millis, bool expected) :
monitor_test_(monitor_test), initial_sleep_(initial_sleep), millis_(millis),
expected_(expected) {}