diff options
author | 2017-11-16 13:34:30 -0800 | |
---|---|---|
committer | 2017-11-16 14:42:49 -0800 | |
commit | 5573c37e795668eca81a8488078f798d977685c3 (patch) | |
tree | 5e7675d6c1ca9ed1c31834e52282bfb9f73dc2a4 /cmdline/cmdline_parser.h | |
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 'cmdline/cmdline_parser.h')
-rw-r--r-- | cmdline/cmdline_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/cmdline_parser.h b/cmdline/cmdline_parser.h index fef39ad930..82c04e70f5 100644 --- a/cmdline/cmdline_parser.h +++ b/cmdline/cmdline_parser.h @@ -340,7 +340,7 @@ struct CmdlineParser { typename std::enable_if<std::is_same<TArg, Unit>::value>::type InitializeTypedBuilder(ArgumentBuilder<TArg>* arg_builder) { // Every Unit argument implicitly maps to a runtime value of Unit{} - std::vector<Unit> values(names_.size(), Unit{}); // NOLINT [whitespace/braces] [5] + std::vector<Unit> values(names_.size(), Unit{}); arg_builder->SetValuesInternal(std::move(values)); } |