Removed the call to the istream ctor, replaced it with readFrom

This commit is contained in:
mac 2000-03-06 16:21:54 +00:00
commit 60857fcf3b

View file

@ -117,7 +117,8 @@ class eoPop: public vector<EOT>, 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 );
}
}