diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-27 00:04:28 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-27 00:04:28 -0700 |
commit | f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816 (patch) | |
tree | 3e62207265b4efbbe1565ea885a615e5a910671c /src/astleaf.cpp | |
parent | 32c32bc48c8fd7cffca301b8919fb26726f6467e (diff) | |
download | stage-f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816.tar.gz stage-f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816.tar.bz2 stage-f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816.tar.xz stage-f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816.zip |
Branch building has started.
Diffstat (limited to 'src/astleaf.cpp')
-rw-r--r-- | src/astleaf.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/astleaf.cpp b/src/astleaf.cpp index 6e29d7e..59a4e34 100644 --- a/src/astleaf.cpp +++ b/src/astleaf.cpp | |||
@@ -9,3 +9,8 @@ AstLeaf::~AstLeaf() | |||
9 | { | 9 | { |
10 | } | 10 | } |
11 | 11 | ||
12 | Bu::Formatter &operator<<( Bu::Formatter &f, const AstLeaf &l ) | ||
13 | { | ||
14 | return f << l.getType(); | ||
15 | } | ||
16 | |||