From a80cd361c062353dc048e4095abc09b9a341a5f0 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Thu, 17 May 2018 16:44:15 +0200 Subject: [PATCH] bin: finish removal of --usage * bin/common_setup.cc: Here. --- bin/common_setup.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/common_setup.cc b/bin/common_setup.cc index 6b04be48c..f9c4d63e4 100644 --- a/bin/common_setup.cc +++ b/bin/common_setup.cc @@ -122,7 +122,6 @@ setup(char** argv) // a short version). enum { OPT_HELP = 1, - OPT_USAGE, OPT_VERSION, }; @@ -130,8 +129,6 @@ static const argp_option options[] = { { "version", OPT_VERSION, nullptr, 0, "print program version", -1 }, { "help", OPT_HELP, nullptr, 0, "print this help", -1 }, - // We support this option just in case, but we don't advertise it. - { "usage", OPT_USAGE, nullptr, OPTION_HIDDEN, "show short usage", -1 }, { nullptr, 0, nullptr, 0, nullptr, 0 } };