From 694ea4009d9d5ba7a73a58a8050b33f3c514e0ba Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 17 Oct 2009 05:36:25 +0000 Subject: Print ellipses correctly. git-svn-id: http://svn.drobilla.net/resp/tuplr@245 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- src/pprint.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src') 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 } } -- cgit v1.2.1