comparison liboctave/array/Range.cc @ 20566:dcfbf4c1c3c8

eliminate trailing whitespace and tabs from sources * Canvas.cc, Canvas.h, Figure.cc, gl-render.h, graphics.cc, ov-fcn-handle.cc, ov-java.cc, Range.cc, CmplxCHOL.cc, dbleCHOL.cc, floatCHOL.cc: Eliminate trailing whitespace and tabs used for indentation.
author John W. Eaton <jwe@octave.org>
date Thu, 01 Oct 2015 12:50:00 -0400
parents 96153b16febe
children
comparison
equal deleted inserted replaced
20565:17e507df10e3 20566:dcfbf4c1c3c8
52 Range::matrix_value (void) const 52 Range::matrix_value (void) const
53 { 53 {
54 if (rng_numel > 0 && cache.numel () == 0) 54 if (rng_numel > 0 && cache.numel () == 0)
55 { 55 {
56 cache.resize (1, rng_numel); 56 cache.resize (1, rng_numel);
57 57
58 // The first element must always be *exactly* the base. 58 // The first element must always be *exactly* the base.
59 // E.g, -0 would otherwise become +0 in the loop (-0 + 0*increment). 59 // E.g, -0 would otherwise become +0 in the loop (-0 + 0*increment).
60 cache(0) = rng_base; 60 cache(0) = rng_base;
61 61
62 double b = rng_base; 62 double b = rng_base;