X-Git-Url: https://git.dlugolecki.net.pl/?p=command.git;a=blobdiff_plain;f=include%2Fargument.h;h=bf5fc3354f304c7b894252069969451275ec7fff;hp=2cd3c300f970a8d2e205de7685a6f10fd9ad241d;hb=eaf888960119de8ce2190df5ffed7325f540cb8d;hpb=ae6743a2a2c69b7a927f64ff1d3abf38a5e7d4bc diff --git a/include/argument.h b/include/argument.h index 2cd3c30..bf5fc33 100644 --- a/include/argument.h +++ b/include/argument.h @@ -32,10 +32,6 @@ namespace command { * @param description Description of current Argument * @param function Function used to handle current Argument. */ - Argument(const std::string & description, void (*function)(ParameterType)) - : Parameter(description), Callable(function) { - } - Argument(const std::string & description, std::function function) : Parameter(description), Callable(function) { }