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

This commit is contained in:
mac 2000-03-06 16:28:37 +00:00
commit f430468921

View file

@ -73,7 +73,7 @@ public:
have to implement this.
@param _is the input stream
*/
eo1d( istream& _is): EO<fitnessT>( _is ){};
eo1d( istream& _is): EO<fitnessT>(){ readFrom(is); }
/// Copy ctor
eo1d( const eo1d& _eo )