Mercurial > hg > octave-nkf
comparison liboctave/MArray.cc @ 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 | d9d65c3017c3 |
comparison
equal
deleted
inserted
replaced
11585:1473d0cf86d2 | 11586:12df7854fa7c |
---|---|
1 /* | 1 /* |
2 | 2 |
3 Copyright (C) 1993-2011 John W. Eaton | 3 Copyright (C) 1993-2011 John W. Eaton |
4 Copyright (C) 2009 VZLU Prague | 4 Copyright (C) 2009 VZLU Prague |
5 | 5 |
6 This file is part of Octave. | 6 This file is part of Octave. |
7 | 7 |
8 Octave is free software; you can redistribute it and/or modify it | 8 Octave is free software; you can redistribute it and/or modify it |
9 under the terms of the GNU General Public License as published by the | 9 under the terms of the GNU General Public License as published by the |
356 | 356 |
357 template <class T> | 357 template <class T> |
358 MArray<T> | 358 MArray<T> |
359 operator - (const MArray<T>& a) | 359 operator - (const MArray<T>& a) |
360 { | 360 { |
361 return do_mx_unary_op<T, T> (a, mx_inline_uminus); | 361 return do_mx_unary_op<T, T> (a, mx_inline_uminus); |
362 } | 362 } |