diff options
author | 2015-08-12 18:15:42 +0100 | |
---|---|---|
committer | 2015-08-12 18:15:42 +0100 | |
commit | 3887c468d731420e929e6ad3acf190d5431e94fc (patch) | |
tree | 67dacb849e722e33e118b97714a48e467c06cbd5 /compiler/jni/quick/calling_convention.h | |
parent | 6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff) |
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
Diffstat (limited to 'compiler/jni/quick/calling_convention.h')
-rw-r--r-- | compiler/jni/quick/calling_convention.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/jni/quick/calling_convention.h b/compiler/jni/quick/calling_convention.h index c9b595aeea..243d124455 100644 --- a/compiler/jni/quick/calling_convention.h +++ b/compiler/jni/quick/calling_convention.h @@ -348,8 +348,8 @@ class JniCallingConvention : public CallingConvention { kObjectOrClass = 1 }; - explicit JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty, - size_t frame_pointer_size) + JniCallingConvention(bool is_static, bool is_synchronized, const char* shorty, + size_t frame_pointer_size) : CallingConvention(is_static, is_synchronized, shorty, frame_pointer_size) {} // Number of stack slots for outgoing arguments, above which the handle scope is |