diff options
author | 2017-11-17 01:12:38 +0000 | |
---|---|---|
committer | 2017-11-17 01:12:38 +0000 | |
commit | 8acd00f9e65078f0f9d3c6fa7fea19ee0c17567a (patch) | |
tree | d79c8ff901ab2017dd6308f9bd43d02b877a5c9e /runtime/base/bit_string.h | |
parent | 9b69cdf2b1ece2d088e2e1855285e0c7ab4731f5 (diff) | |
parent | 5573c37e795668eca81a8488078f798d977685c3 (diff) |
Merge "cpplint: Remove many unnecessary NOLINT"
Diffstat (limited to 'runtime/base/bit_string.h')
-rw-r--r-- | runtime/base/bit_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/base/bit_string.h b/runtime/base/bit_string.h index 1cda021017..a2164f335d 100644 --- a/runtime/base/bit_string.h +++ b/runtime/base/bit_string.h @@ -248,7 +248,7 @@ struct BitString { // Does this bitstring contain exactly 0 characters? bool IsEmpty() const { - return (*this) == BitString{}; // NOLINT + return (*this) == BitString{}; } // Remove all BitStringChars starting at end. |