Replace A2_ARRAY_LEN with constexpr arraySize

This commit is contained in:
Tatsuhiro Tsujikawa 2014-08-29 23:37:31 +09:00
parent b8b291187d
commit ae631513f3
8 changed files with 13 additions and 18 deletions

View file

@ -168,7 +168,7 @@ void OptionParserTest::testParseArg()
char* argv[] = { prog, optionTimeout, argTimeout, optionDir, argDir,
nonopt1, nonopt2 };
int argc = A2_ARRAY_LEN(argv);
int argc = arraySize(argv);
std::stringstream s;
std::vector<std::string> nonopts;