From f430468921edbcf49e5779e6d5af14c0dd294c8f Mon Sep 17 00:00:00 2001 From: mac Date: Mon, 6 Mar 2000 16:28:37 +0000 Subject: [PATCH] Removed the call to the istream ctor, replaced it with readFrom --- eo/src/eo1d.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eo/src/eo1d.h b/eo/src/eo1d.h index 31ed415f..f2bfea20 100644 --- a/eo/src/eo1d.h +++ b/eo/src/eo1d.h @@ -73,7 +73,7 @@ public: have to implement this. @param _is the input stream */ - eo1d( istream& _is): EO( _is ){}; + eo1d( istream& _is): EO(){ readFrom(is); } /// Copy ctor eo1d( const eo1d& _eo )