diff libinterp/corefcn/oct-iostrm.cc @ 27172:b0abae0bd94b

style fixes * oct-fstrm.cc, oct-fstrm.h, oct-iostrm.cc, oct-iostrm.h, oct-stream.cc, oct-stream.h, oct-strstrm.h, procstream.cc, procstream.h: Use m_ prefix for member variable names and other minor style fixes.
author John W. Eaton <jwe@octave.org>
date Tue, 11 Jun 2019 12:53:55 -0500
parents 00f796120a6d
children b442ec6dda5c
line wrap: on
line diff
--- a/libinterp/corefcn/oct-iostrm.cc	Tue Jun 11 12:50:34 2019 -0500
+++ b/libinterp/corefcn/oct-iostrm.cc	Tue Jun 11 12:53:55 2019 -0500
@@ -69,7 +69,7 @@
 bool
 octave_istream::eof (void) const
 {
-  return is && is->eof ();
+  return m_istream && m_istream->eof ();
 }
 
 octave::stream
@@ -83,7 +83,7 @@
 bool
 octave_ostream::eof (void) const
 {
-  return os && os->eof ();
+  return m_ostream && m_ostream->eof ();
 }
 
 octave::stream