Revision a62448d3
Added by David Sorber over 7 years ago
| software/photo_compress_archiver/main.cc | ||
|---|---|---|
|
char* app_name = argv[0];
|
||
|
if (argv[0][0] == '.' && argv[0][1] == '/')
|
||
|
{
|
||
|
char* app_name = &argv[0][2];
|
||
|
app_name = &argv[0][2];
|
||
|
}
|
||
|
|
||
|
header();
|
||
| ... | ... | |
|
{
|
||
|
uint32_t num_cores = std::thread::hardware_concurrency();
|
||
|
uint32_t num_threads = 0;
|
||
|
std::string search_path("");
|
||
|
std::string filter_str("");
|
||
|
std::string search_path;
|
||
|
std::string filter_str;
|
||
|
bpo::variables_map general_opts_vm;
|
||
|
|
||
|
try
|
||
Fixing items suggested by clang-tidy.