comparison main/fixed/src/fixedRowVector.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
176 176
177 friend std::ostream& operator << (std::ostream& os, const FixedRowVector& a); 177 friend std::ostream& operator << (std::ostream& os, const FixedRowVector& a);
178 friend std::istream& operator >> (std::istream& is, FixedRowVector& a); 178 friend std::istream& operator >> (std::istream& is, FixedRowVector& a);
179 179
180 void resize (octave_idx_type n, 180 void resize (octave_idx_type n,
181 const FixedPoint& rfv = Array<FixedPoint>::resize_fill_value ()) 181 const FixedPoint& rfv = FixedPoint ())
182 { 182 {
183 Array<FixedPoint>::resize (dim_vector (1, n), rfv); 183 Array<FixedPoint>::resize (dim_vector (1, n), rfv);
184 } 184 }
185 }; 185 };
186 186