Added a (recursive) ordering, so we have a canonical output that we can compare.

This commit is contained in:
Jesse Beder
2008-07-06 00:06:36 +00:00
parent 2a0ddc8cb2
commit 115cf601e9
15 changed files with 217 additions and 51 deletions

View File

@@ -11,7 +11,7 @@ namespace YAML
{
}
Node::Iterator::Iterator(std::map <Node *, Node *>::const_iterator it): mapIter(it), type(IT_MAP)
Node::Iterator::Iterator(std::map <Node *, Node *, ltnode>::const_iterator it): mapIter(it), type(IT_MAP)
{
}