comparison liboctave/array/Array.h @ 31549:ed7b17c7ddf3 stable

maint: Strip trailing spaces and add missing EOL to all files. * README, NEWS.6.md, RELEASE_CHECKLIST.md, README.md, besselj.cc, Array.h, LSODE.cc, set.m, audiorecorder.m, play.m, set.m, patch.m: Strip trailing spaces. * command-widget.cc, led-indicator.cc, led-indicator.h: Add missing EOL to files.
author Rik <rik@octave.org>
date Fri, 25 Nov 2022 21:38:22 -0800
parents 3ea38ae97cc6
children c58f0f6ae207 33ce26ffc42b
comparison
equal deleted inserted replaced
31548:c8ad083a5802 31549:ed7b17c7ddf3
633 633
634 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc> 634 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc>
635 reshape (octave_idx_type nr, octave_idx_type nc) const 635 reshape (octave_idx_type nr, octave_idx_type nc) const
636 { return Array<T, Alloc> (*this, dim_vector (nr, nc)); } 636 { return Array<T, Alloc> (*this, dim_vector (nr, nc)); }
637 637
638 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc> 638 OCTARRAY_OVERRIDABLE_FUNC_API Array<T, Alloc>
639 reshape (const dim_vector& new_dims) const 639 reshape (const dim_vector& new_dims) const
640 { return Array<T, Alloc> (*this, new_dims); } 640 { return Array<T, Alloc> (*this, new_dims); }
641 641
642 OCTARRAY_API Array<T, Alloc> 642 OCTARRAY_API Array<T, Alloc>
643 permute (const Array<octave_idx_type>& vec, bool inv = false) const; 643 permute (const Array<octave_idx_type>& vec, bool inv = false) const;