| Index: src/flags.cc
|
| diff --git a/src/flags.cc b/src/flags.cc
|
| index 6d9ca58b1dbc5a1bbe487453d6ee95ec2b8c1d0e..f67defd5a98948d55b62b8fbe4840d3c1c3a73fc 100644
|
| --- a/src/flags.cc
|
| +++ b/src/flags.cc
|
| @@ -21,11 +21,11 @@ namespace internal {
|
|
|
| // Define all of our flags.
|
| #define FLAG_MODE_DEFINE
|
| -#include "src/flag-definitions.h" // NOLINT
|
| +#include "src/flag-definitions.h" // NOLINT(build/include)
|
|
|
| // Define all of our flags default values.
|
| #define FLAG_MODE_DEFINE_DEFAULTS
|
| -#include "src/flag-definitions.h" // NOLINT
|
| +#include "src/flag-definitions.h" // NOLINT(build/include)
|
|
|
| namespace {
|
|
|
| @@ -164,7 +164,7 @@ struct Flag {
|
|
|
| Flag flags[] = {
|
| #define FLAG_MODE_META
|
| -#include "src/flag-definitions.h"
|
| +#include "src/flag-definitions.h" // NOLINT(build/include)
|
| };
|
|
|
| const size_t num_flags = sizeof(flags) / sizeof(*flags);
|
| @@ -570,7 +570,7 @@ void ComputeFlagListHash() {
|
| // static
|
| void FlagList::EnforceFlagImplications() {
|
| #define FLAG_MODE_DEFINE_IMPLICATIONS
|
| -#include "src/flag-definitions.h"
|
| +#include "src/flag-definitions.h" // NOLINT(build/include)
|
| #undef FLAG_MODE_DEFINE_IMPLICATIONS
|
| ComputeFlagListHash();
|
| }
|
|
|