diff --git a/maca_common/src/macaon_compute_l_rules.cpp b/maca_common/src/macaon_compute_l_rules.cpp index 89ac095c480b66acb66fc41f9132791c2e176b30..3db684e05e27502a06bc5197b424e315f7dcab3e 100644 --- a/maca_common/src/macaon_compute_l_rules.cpp +++ b/maca_common/src/macaon_compute_l_rules.cpp @@ -40,7 +40,6 @@ po::options_description getOptionsDescription() po::options_description opt("Optional"); opt.add_options() ("help,h", "Produce this help message") - ("strict,s", "TODO : find what it does") ("debug,d", "Print infos on stderr"); desc.add(req).add(opt); @@ -143,7 +142,6 @@ int main(int argc, char * argv[]) std::string exceptionsFilename = vm["exceptions"].as<std::string>(); std::string rulesFilename = vm["rules"].as<std::string>(); int threshold = vm["threshold"].as<int>(); - bool strict = vm.count("strict") == 0 ? false : true; bool debug = vm.count("debug") == 0 ? false : true; File fplm(fplmFilename, "r");