cosmetic changes for consistent source formatting

This commit is contained in:
Axel Kohlmeyer
2020-05-20 07:40:37 -04:00
parent 2712a20f91
commit 2536076ce9
7 changed files with 29 additions and 29 deletions

View File

@ -26,7 +26,7 @@ bool read_yaml_file(const char *infile, TestConfig &config)
auto reader = TestConfigReader(config);
if (reader.parse_file(infile))
return false;
config.basename = reader.get_basename();
return true;
}
@ -45,7 +45,7 @@ void usage(std::ostream &out, const char *name)
<< " -h print this message\n"
<< std::endl;
}
// test configuration settings read from yaml file
TestConfig test_config;