comparison libinterp/corefcn/Cell.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 1473547f50f5 f3f8e1d3e399
children bac0d6f07a3e
comparison
equal deleted inserted replaced
21571:feac06371be1 21574:ae4d7dfea337
109 109
110 // FIXME 110 // FIXME
111 bool any_element_is_nan (void) const { return false; } 111 bool any_element_is_nan (void) const { return false; }
112 bool is_true (void) const { return false; } 112 bool is_true (void) const { return false; }
113 113
114 octave_value resize_fill_value (void) const 114 octave_value resize_fill_value (void) const;
115 {
116 static Matrix rfv;
117 return rfv;
118 }
119 115
120 Cell diag (octave_idx_type k = 0) const; 116 Cell diag (octave_idx_type k = 0) const;
121 117
122 Cell diag (octave_idx_type m, octave_idx_type n) const; 118 Cell diag (octave_idx_type m, octave_idx_type n) const;
123 119