Mercurial > hg > octave-nkf
diff liboctave/so-array.h @ 4655:c8829691db47
[project @ 2003-11-24 21:24:37 by jwe]
author | jwe |
---|---|
date | Mon, 24 Nov 2003 21:24:37 +0000 |
parents | 6d26997e1fc3 |
children | e35b034d3523 |
line wrap: on
line diff
--- a/liboctave/so-array.h +++ b/liboctave/so-array.h @@ -54,10 +54,10 @@ ~streamoff_array (void) { } - streamoff_array& operator = (const streamoff_array& a) + streamoff_array& operator = (const streamoff_array& sa) { - if (this != &a) - ArrayN<std::streamoff>::operator = (a); + if (this != &sa) + ArrayN<std::streamoff>::operator = (sa); return *this; }