util/OptionParser: use C++11 initializers

This commit is contained in:
Max Kellermann 2018-01-16 10:12:48 +01:00
parent a0c4102b5a
commit 465b154fc0

View File

@ -31,16 +31,16 @@ class OptionParser
{ {
int argc; int argc;
char **argv; char **argv;
char *option; char *option = nullptr;
char *option_raw; char *option_raw = nullptr;
bool is_long; bool is_long = false;
public: public:
/** /**
* Constructs #OptionParser. * Constructs #OptionParser.
*/ */
OptionParser(int _argc, char **_argv) OptionParser(int _argc, char **_argv)
: argc(_argc - 1), argv(_argv + 1), :argc(_argc - 1), argv(_argv + 1) {}
option(nullptr), option_raw(nullptr), is_long(false) { }
/** /**
* Checks if there are command line entries to process. * Checks if there are command line entries to process.