Implemented std::map decode (and fixed bug in the Node iterator - the reference_type should be just a plain value, since it's created on-the-fly)

This commit is contained in:
Jesse Beder
2011-09-12 00:29:39 -05:00
parent b9583dde76
commit 5397a93702
3 changed files with 24 additions and 2 deletions

View File

@@ -23,7 +23,8 @@ namespace YAML
iterator_base<V>,
node_iterator,
V,
std::forward_iterator_tag>
std::forward_iterator_tag,
V>
{
private:
template<typename> friend class iterator_base;