Mercurial > hg > octave-nkf
comparison libinterp/octave-value/ov-class.cc @ 18477:1e148ecdeedd
maint: Periodic merge of gui-release to default.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 29 Jan 2014 15:28:35 -0500 |
parents | ff311e5ff6d8 a9cec5517d92 |
children | bcd71a2531d3 |
comparison
equal
deleted
inserted
replaced
18470:4c064d3d2750 | 18477:1e148ecdeedd |
---|---|
1249 octave_value val = map.contents (i); | 1249 octave_value val = map.contents (i); |
1250 | 1250 |
1251 bool b = save_ascii_data (os, val, m.key (i), false, 0); | 1251 bool b = save_ascii_data (os, val, m.key (i), false, 0); |
1252 | 1252 |
1253 if (! b) | 1253 if (! b) |
1254 return os; | 1254 return ! os.fail (); |
1255 | 1255 |
1256 i++; | 1256 i++; |
1257 } | 1257 } |
1258 | 1258 |
1259 return true; | 1259 return true; |
1378 octave_value val = map.contents (i); | 1378 octave_value val = map.contents (i); |
1379 | 1379 |
1380 bool b = save_binary_data (os, val, m.key (i), "", 0, save_as_floats); | 1380 bool b = save_binary_data (os, val, m.key (i), "", 0, save_as_floats); |
1381 | 1381 |
1382 if (! b) | 1382 if (! b) |
1383 return os; | 1383 return ! os.fail (); |
1384 | 1384 |
1385 i++; | 1385 i++; |
1386 } | 1386 } |
1387 | 1387 |
1388 return true; | 1388 return true; |