From 60857fcf3bf5691b16c04a69e4e84d1a37b1a60f Mon Sep 17 00:00:00 2001 From: mac Date: Mon, 6 Mar 2000 16:21:54 +0000 Subject: [PATCH] Removed the call to the istream ctor, replaced it with readFrom --- eo/src/eoPop.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eo/src/eoPop.h b/eo/src/eoPop.h index 10ebdcb3c..e0b4513b2 100644 --- a/eo/src/eoPop.h +++ b/eo/src/eoPop.h @@ -117,7 +117,8 @@ class eoPop: public vector, public eoObject, public eoPersistent { _is.getline( line, MAXLINELENGTH-1 ); if (strlen( line ) ) { istrstream s( line ); - EOT thisEOT( s ); + EOT thisEOT; + thisEOT.readFrom( s ); push_back( thisEOT ); } }