Skip to content

Commit

Permalink
fixup variable.cpp refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
gfgtdf committed Jul 19, 2014
1 parent 7531089 commit cc3ff2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/variable.cpp
Expand Up @@ -193,7 +193,7 @@ vconfig::child_list vconfig::get_children(const std::string& key) const
config::const_child_itors range = as_nonempty_range(insert_cfg["variable"]);
BOOST_FOREACH(const config& child, range)
{
res.push_back(vconfig(*range.first++, true));
res.push_back(vconfig(child, true));
}
}
catch(const invalid_variablename_exception&)
Expand Down

0 comments on commit cc3ff2d

Please sign in to comment.