diff --git a/eo/src/eoPop.h b/eo/src/eoPop.h index 10ebdcb3..e0b4513b 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 ); } }