Mercurial > hg > octave-thorsten
changeset 5884:9a5a0d5ef82a
[project @ 2006-07-14 18:57:19 by jwe]
author | jwe |
---|---|
date | Fri, 14 Jul 2006 18:57:19 +0000 |
parents | 1de9a198a303 |
children | bd3041e30d97 |
files | src/ChangeLog src/c-file-ptr-stream.h |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2006-07-14 John W. Eaton <jwe@octave.org> + + * c-file-ptr-stream.h (c_file_ptr_stream::c_file_ptr_stream): + Qualify init. + 2006-07-13 John W. Eaton <jwe@octave.org> * oct-map.h (Octave_map::del): Add missing std:: qualifier to use
--- a/src/c-file-ptr-stream.h +++ b/src/c-file-ptr-stream.h @@ -104,7 +104,7 @@ public: c_file_ptr_stream (FILE_T f, typename BUF_T::close_fcn cf = BUF_T::fclose) - : STREAM_T (0), buf (new BUF_T (f, cf)) { init (buf); } + : STREAM_T (0), buf (new BUF_T (f, cf)) { STREAM_T::init (buf); } ~c_file_ptr_stream (void) { delete buf; buf = 0; }