Mercurial > hg > octave-nkf
diff libinterp/corefcn/oct-stream.cc @ 19944:3fa35defe495
Adjust spacing of static_cast<> calls to follow Octave coding conventions.
* __init_qt__.cc, file-editor.cc, main-window.cc, bsxfun.cc, data.cc,
filter.cc, gammainc.cc, ls-hdf5.cc, mex.cc, oct-stream.cc, lo-mappers.cc,
lo-specfun.cc, data-conv.cc, lo-regexp.cc, oct-inttypes.h:
Adjust spacing of static_cast<> calls to follow Octave coding conventions.
author | Rik <rik@octave.org> |
---|---|
date | Tue, 17 Feb 2015 13:34:32 -0800 |
parents | 17a7e9f26e50 |
children | 1c9ed5b4c73d |
line wrap: on
line diff
--- a/libinterp/corefcn/oct-stream.cc +++ b/libinterp/corefcn/oct-stream.cc @@ -3590,7 +3590,7 @@ { typedef typename V::val_type val_type; - val_type *vt_data = static_cast <val_type *> (conv_data); + val_type *vt_data = static_cast<val_type *> (conv_data); for (octave_idx_type i = 0; i < n_elts; i++) { @@ -3685,7 +3685,7 @@ case oct_data_conv::dt_single: { - float *vt_data = static_cast <float *> (conv_data); + float *vt_data = static_cast<float *> (conv_data); for (octave_idx_type i = 0; i < n_elts; i++) { @@ -3699,7 +3699,7 @@ case oct_data_conv::dt_double: { - double *vt_data = static_cast <double *> (conv_data); + double *vt_data = static_cast<double *> (conv_data); for (octave_idx_type i = 0; i < n_elts; i++) {