comparison liboctave/array/dim-vector.h @ 21574:ae4d7dfea337

maint: merge stable to default.
author John W. Eaton <jwe@octave.org>
date Fri, 01 Apr 2016 12:57:49 -0400
parents dcee67d28570 f3f8e1d3e399
children 53728df3e4c9
comparison
equal deleted inserted replaced
21571:feac06371be1 21574:ae4d7dfea337
274 return rep; 274 return rep;
275 } 275 }
276 276
277 private: 277 private:
278 278
279 static octave_idx_type *nil_rep (void) 279 static octave_idx_type *nil_rep (void);
280 {
281 static dim_vector zv (0, 0);
282 return zv.rep;
283 }
284 280
285 public: 281 public:
286 282
287 static octave_idx_type dim_max (void); 283 static octave_idx_type dim_max (void);
288 284