summaryrefslogtreecommitdiff
path: root/src/astbranch.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 15:53:38 -0700
commit1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (patch)
tree9c146a63d57eb60542b22271dfdcec363ae2af84 /src/astbranch.cpp
parent162ccd918698f53ef9ff7ba80091969d93aa789d (diff)
downloadstage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.gz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.bz2
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.tar.xz
stage-1bd7f709f5217b248fcb3a4c7be2eeca84fec795.zip
This commit...I dunno
I'm using a different version of everything, and I don't know if it's forward compatible or not.
Diffstat (limited to 'src/astbranch.cpp')
-rw-r--r--src/astbranch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/astbranch.cpp b/src/astbranch.cpp
index a422a62..e506d9c 100644
--- a/src/astbranch.cpp
+++ b/src/astbranch.cpp
@@ -31,7 +31,7 @@ Bu::Formatter &operator<<( Bu::Formatter &f, const AstBranch &b )
31{ 31{
32 f << "(Branch " << b.getType() << ": "; 32 f << "(Branch " << b.getType() << ": ";
33 f.incIndent(); 33 f.incIndent();
34 for( typename AstBranch::NodeList::const_iterator i = b.lNodes.begin(); 34 for( AstBranch::NodeList::const_iterator i = b.lNodes.begin();
35 i; i++ ) 35 i; i++ )
36 { 36 {
37 f << f.nl << *(*i); 37 f << f.nl << *(*i);