Skip to content
Snippets Groups Projects
Commit 7ffba173 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[BL] removed default arg

parent 92bf5589
No related branches found
No related tags found
No related merge requests found
...@@ -298,10 +298,10 @@ ConfigTreeNew::checkAndInvalidate() ...@@ -298,10 +298,10 @@ ConfigTreeNew::checkAndInvalidate()
for (auto const& p : _visited_params) for (auto const& p : _visited_params)
{ {
auto const& tag = std::get<1>(p.first); auto const& tag = p.first.second;
auto const& count = p.second.count; auto const& count = p.second.count;
if (std::get<0>(p.first)) { // tag if (p.first.first) { // tag
if (count > 0) { if (count > 0) {
warning("XML attribute \"" + tag + "\" has been read " + std::to_string(count) warning("XML attribute \"" + tag + "\" has been read " + std::to_string(count)
+ " time(s) more than it was present in the configuration tree."); + " time(s) more than it was present in the configuration tree.");
......
...@@ -147,7 +147,7 @@ public: ...@@ -147,7 +147,7 @@ public:
// tell the _parent instance that a setting now has been parsed. // tell the _parent instance that a setting now has been parsed.
if (_has_incremented) { if (_has_incremented) {
_has_incremented = false; _has_incremented = false;
_parent.markVisited<ValueType>(_tagname, false); _parent.markVisited<ValueType>(_tagname, false, false);
} }
return ConfigTreeNew(_it->second, _parent, _tagname).getValue<ValueType>(); return ConfigTreeNew(_it->second, _parent, _tagname).getValue<ValueType>();
} }
...@@ -384,7 +384,7 @@ private: ...@@ -384,7 +384,7 @@ private:
*/ */
template<typename T> template<typename T>
CountType& markVisited(std::string const& key, bool const is_attr, CountType& markVisited(std::string const& key, bool const is_attr,
bool peek_only = false) const; bool peek_only) const;
/*! Keeps track of the key \c key and its value type ConfigTree. /*! Keeps track of the key \c key and its value type ConfigTree.
* *
...@@ -392,7 +392,7 @@ private: ...@@ -392,7 +392,7 @@ private:
* *
* \c param peek_only if true, do not change the read-count of the given key. * \c param peek_only if true, do not change the read-count of the given key.
*/ */
CountType& markVisited(std::string const& key, bool const peek_only = false) const; CountType& markVisited(std::string const& key, bool const peek_only) const;
//! Used in the destructor to compute the difference between number of reads of a parameter //! Used in the destructor to compute the difference between number of reads of a parameter
//! and the number of times it exists in the ConfigTree //! and the number of times it exists in the ConfigTree
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment