fix oops
because compiling before pushing is for wusses
This commit is contained in:
parent
1106cde687
commit
e51c78f10c
1 changed files with 3 additions and 3 deletions
|
@ -1405,9 +1405,9 @@ bool CheckCommandLineArguments(int argc, base::CommandLine::CharType** argv) {
|
||||||
return base::StringPiece(a) < base::StringPiece(b);
|
return base::StringPiece(a) < base::StringPiece(b);
|
||||||
}))
|
}))
|
||||||
<< "The kBlacklist must be in sorted order";
|
<< "The kBlacklist must be in sorted order";
|
||||||
DCHECK_NE(std::binary_search(std::begin(kBlacklist), std::end(kBlacklist),
|
DCHECK(std::binary_search(std::begin(kBlacklist), std::end(kBlacklist),
|
||||||
base::StringPiece("inspect"));
|
base::StringPiece("inspect")))
|
||||||
<< "Do not forget to add Node command line flags to kBlacklist";
|
<< "Remember to add Node command line flags to kBlacklist";
|
||||||
|
|
||||||
const base::CommandLine::StringType dashdash(2, '-');
|
const base::CommandLine::StringType dashdash(2, '-');
|
||||||
bool block_blacklisted_args = false;
|
bool block_blacklisted_args = false;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue