comparison libinterp/octave-value/ov-scalar.h @ 21066:258c787cd9ce

maint: Use "FIXME:" consistently in code base. * file-editor-tab.h, mxarray.in.h, pr-output.cc, symtab.h, ov-bool-sparse.h, ov-bool.h, ov-float.h, ov-scalar.h, ov-str-mat.cc, oct-parse.in.yy, f77-fcn.h, lo-specfun.cc, randmtzig.c, randpoisson.c, lo-ieee.h, oct-rl-edit.c, sparse-util.h: Use "FIXME:" consistently in code base.
author Rik <rik@octave.org>
date Thu, 14 Jan 2016 07:02:41 -0800
parents f7084eae3318
children e39e05d90788
comparison
equal deleted inserted replaced
21065:e1ee2203efe0 21066:258c787cd9ce
161 { return FloatNDArray (dim_vector (1, 1), scalar); } 161 { return FloatNDArray (dim_vector (1, 1), scalar); }
162 162
163 SparseMatrix sparse_matrix_value (bool = false) const 163 SparseMatrix sparse_matrix_value (bool = false) const
164 { return SparseMatrix (Matrix (1, 1, scalar)); } 164 { return SparseMatrix (Matrix (1, 1, scalar)); }
165 165
166 // FIXME Need SparseComplexMatrix (Matrix) constructor!!! 166 // FIXME: Need SparseComplexMatrix (Matrix) constructor!
167 SparseComplexMatrix sparse_complex_matrix_value (bool = false) const 167 SparseComplexMatrix sparse_complex_matrix_value (bool = false) const
168 { return SparseComplexMatrix (sparse_matrix_value ()); } 168 { return SparseComplexMatrix (sparse_matrix_value ()); }
169 169
170 octave_value resize (const dim_vector& dv, bool fill = false) const; 170 octave_value resize (const dim_vector& dv, bool fill = false) const;
171 171