Why was an implementation detail function left public?

This commit is contained in:
Celtic Minstrel 2019-11-13 00:26:58 -05:00
parent c602110e72
commit 4f33470ada

View File

@ -472,7 +472,9 @@ public:
const std::string &value) const
{ return const_cast<config *>(this)->find_child(key, name, value); }
private:
void clear_children_impl(config_key_type key);
public:
template<typename... T>
void clear_children(T... keys) {
for(auto key : {keys...}) {