From 4e34e229beb12164ea49b1121785dc71eb7c3566 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Jun 2009 03:55:17 +0000 Subject: Strip trailing whitespace. git-svn-id: http://svn.drobilla.net/resp/tuplr@118 ad02d1e2-f140-0410-9f75-f8b11f17cedd --- write.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'write.cpp') diff --git a/write.cpp b/write.cpp index 984e236..95079ad 100644 --- a/write.cpp +++ b/write.cpp @@ -23,11 +23,11 @@ operator<<(ostream& out, const AST* ast) const ALiteral* flit = ast->to*>(); if (flit) return out << showpoint << flit->val; - + const ALiteral* ilit = ast->to*>(); if (ilit) return out << ilit->val; - + const ALiteral* blit = ast->to*>(); if (blit) return out << (blit->val ? "#t" : "#f"); @@ -35,7 +35,7 @@ operator<<(ostream& out, const AST* ast) const ASymbol* sym = ast->to(); if (sym) return out << sym->cppstr; - + const AType* type = ast->to(); if (type) { switch (type->kind) { @@ -44,7 +44,7 @@ operator<<(ostream& out, const AST* ast) case AType::EXPR: break; // will catch Tuple case below } } - + const ATuple* tup = ast->to(); if (tup) { out << "("; @@ -52,7 +52,7 @@ operator<<(ostream& out, const AST* ast) out << tup->at(i) << ((i != tup->size() - 1) ? " " : ""); return out << ")"; } - + return out << "?"; } -- cgit v1.2.1