diff options
author | 2017-11-16 13:34:30 -0800 | |
---|---|---|
committer | 2017-11-16 14:42:49 -0800 | |
commit | 5573c37e795668eca81a8488078f798d977685c3 (patch) | |
tree | 5e7675d6c1ca9ed1c31834e52282bfb9f73dc2a4 /runtime/base/bit_string_test.cc | |
parent | 1598a77ca3559c8a59902f26ee887504b8159859 (diff) |
cpplint: Remove many unnecessary NOLINT
Now that we updated to upstream cpplint, a lot of these NOLINTs are no
longer necessary.
Bug: 68951293
Change-Id: If8ed5ffe89727f313f907a214b6d8fd2a2eddbad
Diffstat (limited to 'runtime/base/bit_string_test.cc')
-rw-r--r-- | runtime/base/bit_string_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/base/bit_string_test.cc b/runtime/base/bit_string_test.cc index d5610e7a73..96aa154ef3 100644 --- a/runtime/base/bit_string_test.cc +++ b/runtime/base/bit_string_test.cc @@ -47,7 +47,7 @@ BitStringChar MakeBitStringChar(size_t val) { BitString MakeBitString(std::initializer_list<size_t> values = {}) { CHECK_GE(BitString::kCapacity, values.size()); - BitString bs{}; // NOLINT + BitString bs{}; size_t i = 0; for (size_t val : values) { @@ -68,7 +68,7 @@ size_t AsUint(const T& value) { // Make max bitstring, e.g. BitString[4095,7,255] for {12,3,8} template <size_t kCount = BitString::kCapacity> BitString MakeBitStringMax() { - BitString bs{}; // NOLINT + BitString bs{}; for (size_t i = 0; i < kCount; ++i) { bs.SetAt(i, |