From: Mikko Rasa Date: Mon, 25 Jul 2011 14:49:07 +0000 (+0300) Subject: Initialize variables X-Git-Url: http://git.tdb.fi/?p=libs%2Ftest.git;a=commitdiff_plain;h=9250c397ef4c8cd0328284df1cd666a18bfdeb69 Initialize variables --- diff --git a/source/runner.cpp b/source/runner.cpp index 0508312..a2c291e 100644 --- a/source/runner.cpp +++ b/source/runner.cpp @@ -8,7 +8,9 @@ using namespace std; namespace Msp { namespace Test { -Runner::Runner(int argc, char **argv) +Runner::Runner(int argc, char **argv): + verbose(false), + show_list(false) { GetOpt getopt; getopt.add_option('v', "verbose", verbose, GetOpt::NO_ARG).set_help("Show what is being done");