diff options
author | Marius Kintel <marius@kintel.net> | 2010-03-16 08:56:20 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2010-10-31 00:42:34 (GMT) |
commit | 75cd0f291af8e1fd8e27cc649bf40bf291bb40f7 (patch) | |
tree | 4cf8e4fd4566abe2fafee8a549ac97dfb7328d9f /src/nodedumper.cc | |
parent | 9bb4fc829ad9466fe59ad35803ed1db82042342a (diff) |
some FIXMEs
Diffstat (limited to 'src/nodedumper.cc')
-rw-r--r-- | src/nodedumper.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nodedumper.cc b/src/nodedumper.cc index 1956a89..66a8406 100644 --- a/src/nodedumper.cc +++ b/src/nodedumper.cc @@ -43,6 +43,7 @@ string NodeDumper::dumpChildren(const AbstractNode &node) for (ChildList::const_iterator iter = this->visitedchildren[node.index()].begin(); iter != this->visitedchildren[node.index()].end(); iter++) { +// FIXME: assert that cache contains **iter dump << this->cache[**iter] << "\n"; } @@ -81,6 +82,7 @@ Response NodeDumper::visit(const State &state, const AbstractNode &node) const string &NodeDumper::getDump() const { assert(this->root); +// FIXME: assert that cache contains root return this->cache[*this->root]; } |