Make sure all members are initialized in the constructor.

This commit is contained in:
Mark de Wever 2007-12-15 20:10:00 +00:00
parent 6c3239bb42
commit 6953536d80

View file

@ -25,6 +25,12 @@ class config;
struct token
{
token() :
type(END),
leading_spaces(),
value()
{}
enum token_type {
STRING,
QSTRING,