diff options
author | 2017-11-17 01:12:38 +0000 | |
---|---|---|
committer | 2017-11-17 01:12:38 +0000 | |
commit | 8acd00f9e65078f0f9d3c6fa7fea19ee0c17567a (patch) | |
tree | d79c8ff901ab2017dd6308f9bd43d02b877a5c9e /openjdkjvmti/jvmti_allocator.h | |
parent | 9b69cdf2b1ece2d088e2e1855285e0c7ab4731f5 (diff) | |
parent | 5573c37e795668eca81a8488078f798d977685c3 (diff) |
Merge "cpplint: Remove many unnecessary NOLINT"
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 e6cbc85170..11af7b67e7 100644 --- a/openjdkjvmti/jvmti_allocator.h +++ b/openjdkjvmti/jvmti_allocator.h @@ -58,7 +58,7 @@ class JvmtiAllocator<void> { JvmtiAllocator() : env_(nullptr) {} template <typename U> - JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit + JvmtiAllocator(const JvmtiAllocator<U>& other) : env_(other.env_) {} JvmtiAllocator(const JvmtiAllocator& other) = default; @@ -95,7 +95,7 @@ class JvmtiAllocator { JvmtiAllocator() : env_(nullptr) {} template <typename U> - JvmtiAllocator(const JvmtiAllocator<U>& other) // NOLINT, implicit + JvmtiAllocator(const JvmtiAllocator<U>& other) : env_(other.env_) {} JvmtiAllocator(const JvmtiAllocator& other) = default; |