[EDGE-879] run clang-format and make sure style is good

This commit is contained in:
Nora Shoemaker 2015-07-15 09:51:33 -07:00
parent d6551de8d4
commit 5892385e5c
1 changed files with 10 additions and 13 deletions

View File

@ -1429,17 +1429,14 @@ int main(int argc, char **argv) {
if ((int)config.nreqs < config.nconns) {
std::cerr << "-C, -n: warning: two different test times are being set. "
<< std::endl;
std::cerr << "The test will run for "
<< c_time
<< " seconds." << std::endl;
}
else {
std::cerr << "The test will run for " << c_time << " seconds."
<< std::endl;
} else {
std::cout << "-C, -n: warning: two different test times are being set. "
<< std::endl;
std::cout << "The smaller of the two will be chosen and the test will "
<< "run for "
<< std::min(n_time, c_time)
<< " seconds." << std::endl;
<< "run for " << std::min(n_time, c_time) << " seconds."
<< std::endl;
}
}