Mercurial > hg > octave-lyh
diff liboctave/Array-fC.cc @ 10314:07ebe522dac2
untabify liboctave C++ sources
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:23:32 -0500 |
parents | 4c0cdbe0acca |
children | a3635bc1ea19 |
line wrap: on
line diff
--- a/liboctave/Array-fC.cc +++ b/liboctave/Array-fC.cc @@ -45,23 +45,23 @@ nan_ascending_compare (const FloatComplex& x, const FloatComplex& y) { return (xisnan (y) - ? ! xisnan (x) - : ((std::abs (x) < std::abs (x)) - || ((std::abs (x) == std::abs (x)) && (arg (x) < arg (x))))); + ? ! xisnan (x) + : ((std::abs (x) < std::abs (x)) + || ((std::abs (x) == std::abs (x)) && (arg (x) < arg (x))))); } static bool nan_descending_compare (const FloatComplex& x, const FloatComplex& y) { return (xisnan (x) - ? ! xisnan (y) - : ((std::abs (x) > std::abs (x)) - || ((std::abs (x) == std::abs (x)) && (arg (x) > arg (x))))); + ? ! xisnan (y) + : ((std::abs (x) > std::abs (x)) + || ((std::abs (x) == std::abs (x)) && (arg (x) > arg (x))))); } Array<FloatComplex>::compare_fcn_type safe_comparator (sortmode mode, const Array<FloatComplex>& a, - bool allow_chk) + bool allow_chk) { Array<FloatComplex>::compare_fcn_type result = 0;