comparison src/ov-typeinfo.cc @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents 57632dea2446
children 39ca02387a32
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
146 ? instance->do_register_assignany_op (op, t_lhs, f) : -1; 146 ? instance->do_register_assignany_op (op, t_lhs, f) : -1;
147 } 147 }
148 148
149 bool 149 bool
150 octave_value_typeinfo::register_pref_assign_conv (int t_lhs, int t_rhs, 150 octave_value_typeinfo::register_pref_assign_conv (int t_lhs, int t_rhs,
151 int t_result) 151 int t_result)
152 { 152 {
153 return (instance_ok ()) 153 return (instance_ok ())
154 ? instance->do_register_pref_assign_conv (t_lhs, t_rhs, t_result) : false; 154 ? instance->do_register_pref_assign_conv (t_lhs, t_rhs, t_result) : false;
155 } 155 }
156 156
411 return false; 411 return false;
412 } 412 }
413 413
414 bool 414 bool
415 octave_value_typeinfo::do_register_pref_assign_conv (int t_lhs, int t_rhs, 415 octave_value_typeinfo::do_register_pref_assign_conv (int t_lhs, int t_rhs,
416 int t_result) 416 int t_result)
417 { 417 {
418 if (lookup_pref_assign_conv (t_lhs, t_rhs) >= 0) 418 if (lookup_pref_assign_conv (t_lhs, t_rhs) >= 0)
419 { 419 {
420 std::string t_lhs_name = types(t_lhs); 420 std::string t_lhs_name = types(t_lhs);
421 std::string t_rhs_name = types(t_rhs); 421 std::string t_rhs_name = types(t_rhs);