Commit 465b154f authored by Max Kellermann's avatar Max Kellermann

util/OptionParser: use C++11 initializers

parent a0c4102b
...@@ -31,16 +31,16 @@ class OptionParser ...@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment