summaryrefslogtreecommitdiff
path: root/configmgr/source/xcsparser.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-06-20 10:07:21 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-06-20 10:07:21 +0200
commitebc635b95cc6d8c5853c443fee9fe76a0c89c121 (patch)
tree18a270549ffb9e985a947bc280f6e243476f9420 /configmgr/source/xcsparser.cxx
parent4379180aaa6b65e172d366fbf64cbe3cea6d5435 (diff)
Turn redundant member direct-initializations into value-initializations
...the direct-initializations were introduced with 032d5126e41562917b91b8f4826b0be628169968 "cppcheck: fix some uninitMemberVar in configmgr part," presumably to avoid false positives from static analysis tools. But the initializations are redundant, as the invariants of the affected classes imply that the members have meaningful values at their points of use. And the direct-initializations with arbitrary values make it harder for a maintainer to understand the relevant invariants, namely to ensure the members must have been assigned /meaningful/ values by the time they are used. Give a (subtle) clue by making those into value-initializations. Change-Id: Iadb25fa08b6d6b12d5bf8a8f04271270b6a7f7cb
Diffstat (limited to 'configmgr/source/xcsparser.cxx')
-rw-r--r--configmgr/source/xcsparser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/configmgr/source/xcsparser.cxx b/configmgr/source/xcsparser.cxx
index 6f4744de7799..0dc218ddc1e6 100644
--- a/configmgr/source/xcsparser.cxx
+++ b/configmgr/source/xcsparser.cxx
@@ -114,7 +114,7 @@ void merge(
}
XcsParser::XcsParser(int layer, Data & data):
- valueParser_(layer), data_(data), state_(STATE_START), ignoring_(0)
+ valueParser_(layer), data_(data), state_(STATE_START), ignoring_()
{}
XcsParser::~XcsParser() {}