summaryrefslogtreecommitdiffstats
path: root/runtime/monitor.h
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-17 21:31:49 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-17 21:46:12 -0700
commit93ba893c20532990a430741e0a97212900094e8c (patch)
tree019990a1957562c1f573c77297df5923cce98f47 /runtime/monitor.h
parentb1eba213afaf7fa6445de863ddc9680ab99762ea (diff)
downloadart-93ba893c20532990a430741e0a97212900094e8c.tar.gz
art-93ba893c20532990a430741e0a97212900094e8c.tar.bz2
art-93ba893c20532990a430741e0a97212900094e8c.zip
Fix cpplint runtime/explicit issues
Change-Id: I352ba0b427f1ff9b22887693952b180eae0839ba
Diffstat (limited to 'runtime/monitor.h')
-rw-r--r--runtime/monitor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/monitor.h b/runtime/monitor.h
index 9206131a5b..3b06217374 100644
--- a/runtime/monitor.h
+++ b/runtime/monitor.h
@@ -196,7 +196,7 @@ class MonitorList {
// For use only by the JDWP implementation.
class MonitorInfo {
public:
- MonitorInfo(mirror::Object* o) EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
+ explicit MonitorInfo(mirror::Object* o) EXCLUSIVE_LOCKS_REQUIRED(Locks::mutator_lock_);
Thread* owner;
size_t entry_count;