Skip to content
Snippets Groups Projects
Commit d92e5f0f authored by Franck Dary's avatar Franck Dary
Browse files

Deleted useless program argument

parent c382de25
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,6 @@ po::options_description getOptionsDescription() ...@@ -40,7 +40,6 @@ po::options_description getOptionsDescription()
po::options_description opt("Optional"); po::options_description opt("Optional");
opt.add_options() opt.add_options()
("help,h", "Produce this help message") ("help,h", "Produce this help message")
("strict,s", "TODO : find what it does")
("debug,d", "Print infos on stderr"); ("debug,d", "Print infos on stderr");
desc.add(req).add(opt); desc.add(req).add(opt);
...@@ -143,7 +142,6 @@ int main(int argc, char * argv[]) ...@@ -143,7 +142,6 @@ int main(int argc, char * argv[])
std::string exceptionsFilename = vm["exceptions"].as<std::string>(); std::string exceptionsFilename = vm["exceptions"].as<std::string>();
std::string rulesFilename = vm["rules"].as<std::string>(); std::string rulesFilename = vm["rules"].as<std::string>();
int threshold = vm["threshold"].as<int>(); int threshold = vm["threshold"].as<int>();
bool strict = vm.count("strict") == 0 ? false : true;
bool debug = vm.count("debug") == 0 ? false : true; bool debug = vm.count("debug") == 0 ? false : true;
File fplm(fplmFilename, "r"); File fplm(fplmFilename, "r");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment