diff options
author | David Robillard <d@drobilla.net> | 2009-10-17 05:36:25 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-10-17 05:36:25 +0000 |
commit | 694ea4009d9d5ba7a73a58a8050b33f3c514e0ba (patch) | |
tree | 05a37f1c9639fe7b09f8264be464923b44551104 | |
parent | 67dc4b38fab410dfa3a94fed5261bd1414c3e689 (diff) | |
download | resp-694ea4009d9d5ba7a73a58a8050b33f3c514e0ba.tar.gz resp-694ea4009d9d5ba7a73a58a8050b33f3c514e0ba.tar.bz2 resp-694ea4009d9d5ba7a73a58a8050b33f3c514e0ba.zip |
Print ellipses correctly.
git-svn-id: http://svn.drobilla.net/resp/tuplr@245 ad02d1e2-f140-0410-9f75-f8b11f17cedd
-rw-r--r-- | src/pprint.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pprint.cpp b/src/pprint.cpp index 78b13f4..8f1276d 100644 --- a/src/pprint.cpp +++ b/src/pprint.cpp @@ -49,6 +49,7 @@ operator<<(ostream& out, const AST* ast) switch (type->kind) { case AType::VAR: return out << "?" << type->id; case AType::PRIM: return out << type->head(); + case AType::DOTS: return out << "..."; case AType::EXPR: break; // will catch Tuple case below } } |