Excesss endl.

This commit is contained in:
steve 1999-05-06 02:29:32 +00:00
parent 10f46dae66
commit df0c894cb0
1 changed files with 5 additions and 2 deletions

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#if !defined(WINNT) #if !defined(WINNT)
#ident "$Id: design_dump.cc,v 1.21 1999/05/05 03:04:46 steve Exp $" #ident "$Id: design_dump.cc,v 1.22 1999/05/06 02:29:32 steve Exp $"
#endif #endif
/* /*
@ -355,7 +355,7 @@ void NetCondit::dump(ostream&o, unsigned ind) const
void NetPDelay::dump(ostream&o, unsigned ind) const void NetPDelay::dump(ostream&o, unsigned ind) const
{ {
o << setw(ind) << "" << "#" << delay_ << endl; o << setw(ind) << "" << "#" << delay_;
if (statement_) { if (statement_) {
o << endl; o << endl;
statement_->dump(o, ind+2); statement_->dump(o, ind+2);
@ -568,6 +568,9 @@ void Design::dump(ostream&o) const
/* /*
* $Log: design_dump.cc,v $ * $Log: design_dump.cc,v $
* Revision 1.22 1999/05/06 02:29:32 steve
* Excesss endl.
*
* Revision 1.21 1999/05/05 03:04:46 steve * Revision 1.21 1999/05/05 03:04:46 steve
* Fix handling of null delay statements. * Fix handling of null delay statements.
* *