fix: Pass std::string directly, no need for c_str() call

This commit is contained in:
Andreas Schuh 2016-02-29 16:12:33 +00:00
parent 3ae911f3e7
commit 8ac4bc41aa

View file

@ -1514,7 +1514,7 @@ static int main(int argc, char **argv) {
// The non-recommended way:
FLAGS_changed_bool2 = true;
SetUsageMessage(usage_message.c_str());
SetUsageMessage(usage_message);
SetVersionString("test_version");
ParseCommandLineFlags(&argc, &argv, true);
MakeTmpdir(&FLAGS_test_tmpdir);