Mercurial > hg > octave-nkf
diff src/ov-base-diag.cc @ 10315:57a59eae83cc
untabify src C++ source files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 11 Feb 2010 12:41:46 -0500 |
parents | f80c566bc751 |
children | a0728e81ed25 |
line wrap: on
line diff
--- a/src/ov-base-diag.cc +++ b/src/ov-base-diag.cc @@ -55,8 +55,8 @@ case '{': case '.': { - std::string nm = type_name (); - error ("%s cannot be indexed with %c", nm.c_str (), type[0]); + std::string nm = type_name (); + error ("%s cannot be indexed with %c", nm.c_str (), type[0]); } break; @@ -118,7 +118,7 @@ { case '(': { - if (type.length () == 1) + if (type.length () == 1) { octave_value_list jdx = idx.front (); // Check for a simple element assignment. That means, if D is a diagonal matrix, @@ -142,29 +142,29 @@ if (! error_state && ! retval.is_defined ()) retval = numeric_assign (type, idx, rhs); } - else - { - std::string nm = type_name (); - error ("in indexed assignment of %s, last lhs index must be ()", - nm.c_str ()); - } + else + { + std::string nm = type_name (); + error ("in indexed assignment of %s, last lhs index must be ()", + nm.c_str ()); + } } break; case '{': case '.': { - if (is_empty ()) - { - octave_value tmp = octave_value::empty_conv (type, rhs); + if (is_empty ()) + { + octave_value tmp = octave_value::empty_conv (type, rhs); - retval = tmp.subsasgn (type, idx, rhs); - } - else - { - std::string nm = type_name (); - error ("%s cannot be indexed with %c", nm.c_str (), type[0]); - } + retval = tmp.subsasgn (type, idx, rhs); + } + else + { + std::string nm = type_name (); + error ("%s cannot be indexed with %c", nm.c_str (), type[0]); + } } break; @@ -214,12 +214,12 @@ if (helper_iscomplex (el_type ()) && ! force_conversion) gripe_implicit_conversion ("Octave:imag-to-real", - "complex matrix", "real scalar"); + "complex matrix", "real scalar"); if (numel () > 0) { gripe_implicit_conversion ("Octave:array-as-scalar", - type_name (), "real scalar"); + type_name (), "real scalar"); retval = helper_getreal (el_type (matrix (0, 0))); } @@ -238,12 +238,12 @@ if (helper_iscomplex (el_type ()) && ! force_conversion) gripe_implicit_conversion ("Octave:imag-to-real", - "complex matrix", "real scalar"); + "complex matrix", "real scalar"); if (numel () > 0) { gripe_implicit_conversion ("Octave:array-as-scalar", - type_name (), "real scalar"); + type_name (), "real scalar"); retval = helper_getreal (el_type (matrix (0, 0))); } @@ -264,7 +264,7 @@ if (rows () > 0 && columns () > 0) { gripe_implicit_conversion ("Octave:array-as-scalar", - type_name (), "complex scalar"); + type_name (), "complex scalar"); retval = matrix (0, 0); } @@ -285,7 +285,7 @@ if (rows () > 0 && columns () > 0) { gripe_implicit_conversion ("Octave:array-as-scalar", - type_name (), "complex scalar"); + type_name (), "complex scalar"); retval = matrix (0, 0); } @@ -420,10 +420,10 @@ is >> tmp; if (!is) - { - error ("load: failed to load diagonal matrix constant"); - success = false; - } + { + error ("load: failed to load diagonal matrix constant"); + success = false; + } else { // This is a little tricky, as we have the Matrix type, but