Mercurial > hg > octave-lyh
diff liboctave/boolNDArray.h @ 11586:12df7854fa7c
strip trailing whitespace from source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 20 Jan 2011 17:24:59 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
line wrap: on
line diff
--- a/liboctave/boolNDArray.h +++ b/liboctave/boolNDArray.h @@ -46,7 +46,7 @@ boolNDArray (const dim_vector& dv, const bool& val) : Array<bool> (dv, val) { } - + boolNDArray (const boolNDArray& a) : Array<bool> (a) { } boolNDArray (const boolMatrix& a) : Array<bool> (a) { } @@ -63,7 +63,7 @@ boolNDArray operator ! (void) const; - boolNDArray& invert (void); + boolNDArray& invert (void); bool any_element_is_nan (void) const { return false; } @@ -114,9 +114,9 @@ SND_BOOL_OP_DECLS (bool, boolNDArray, OCTAVE_API) SND_CMP_OP_DECLS (bool, boolNDArray, OCTAVE_API) -extern OCTAVE_API boolNDArray& +extern OCTAVE_API boolNDArray& mx_el_and_assign (boolNDArray& m, const boolNDArray& a); -extern OCTAVE_API boolNDArray& +extern OCTAVE_API boolNDArray& mx_el_or_assign (boolNDArray& m, const boolNDArray& a); BSXFUN_OP_DECL (and, boolNDArray, OCTAVE_API);