diff options
author | 2017-11-08 13:35:21 -0800 | |
---|---|---|
committer | 2017-11-08 15:15:52 -0800 | |
commit | 2ffb703bf431d74326c88266b4ddaf225eb3c6ad (patch) | |
tree | 0552c3c76a42b18f9e7460d501fb71a6dc2e7f33 /openjdkjvmti/jvmti_allocator.h | |
parent | c4b6f3116f15c8e4fdf2e4f604ababdee12d8923 (diff) |
cpplint: Cleanup errors
Cleanup errors from upstream cpplint in preparation
for moving art's cpplint fork to upstream tip-of-tree cpplint.
Test: cd art && mm
Bug: 68951293
Change-Id: I15faed4594cbcb8399850f8bdee39d42c0c5b956
Diffstat (limited to 'openjdkjvmti/jvmti_allocator.h')
-rw-r--r-- | openjdkjvmti/jvmti_allocator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openjdkjvmti/jvmti_allocator.h b/openjdkjvmti/jvmti_allocator.h index e29e034f40..e6cbc85170 100644 --- a/openjdkjvmti/jvmti_allocator.h +++ b/openjdkjvmti/jvmti_allocator.h @@ -55,7 +55,7 @@ class JvmtiAllocator<void> { }; explicit JvmtiAllocator(jvmtiEnv* env) : env_(env) {} - explicit JvmtiAllocator() : env_(nullptr) {} + JvmtiAllocator() : env_(nullptr) {} template <typename U> JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit @@ -92,7 +92,7 @@ class JvmtiAllocator { }; explicit JvmtiAllocator(jvmtiEnv* env) : env_(env) {} - explicit JvmtiAllocator() : env_(nullptr) {} + JvmtiAllocator() : env_(nullptr) {} template <typename U> JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit |