comparison main/fixed/src/fixedColVector.h @ 11277:7b7cd174847c octave-forge

fixed: remove obsolete resize_fill_value()
author jordigh
date Fri, 30 Nov 2012 20:11:09 +0000
parents d84d2fea3c90
children
comparison
equal deleted inserted replaced
11276:3f056f8b0358 11277:7b7cd174847c
181 const FixedColumnVector& a); 181 const FixedColumnVector& a);
182 friend std::istream& operator >> (std::istream& is, 182 friend std::istream& operator >> (std::istream& is,
183 FixedColumnVector& a); 183 FixedColumnVector& a);
184 184
185 void resize (octave_idx_type n, 185 void resize (octave_idx_type n,
186 const FixedPoint& rfv = Array<FixedPoint>::resize_fill_value ()) 186 const FixedPoint& rfv = FixedPoint ())
187 { 187 {
188 Array<FixedPoint>::resize (dim_vector (n, 1), rfv); 188 Array<FixedPoint>::resize (dim_vector (n, 1), rfv);
189 } 189 }
190 190
191 }; 191 };