Removed the call to the istream ctor, replaced it with readFrom
This commit is contained in:
parent
60857fcf3b
commit
f430468921
1 changed files with 1 additions and 1 deletions
|
|
@ -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 )
|
||||
|
|
|
|||
Reference in a new issue