From d92e5f0f51322fe3fac3566f61d50a054d0213ce Mon Sep 17 00:00:00 2001
From: Franck Dary <franck.dary@lis-lab.fr>
Date: Sat, 2 Nov 2019 22:32:01 +0100
Subject: [PATCH] Deleted useless program argument

---
 maca_common/src/macaon_compute_l_rules.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/maca_common/src/macaon_compute_l_rules.cpp b/maca_common/src/macaon_compute_l_rules.cpp
index 89ac095..3db684e 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");
-- 
GitLab