comparison libinterp/octave-value/ov-perm.cc @ 18678:6113e0c6920b

maint: Clean up extra spaces before/after parentheses.
author Rik <rik@octave.org>
date Fri, 25 Apr 2014 13:25:25 -0700
parents 491b0adfec95
children aa9ca67f09fb
comparison
equal deleted inserted replaced
18677:f684f7075aee 18678:6113e0c6920b
323 return true; 323 return true;
324 } 324 }
325 325
326 bool 326 bool
327 octave_perm_matrix::load_binary (std::istream& is, bool swap, 327 octave_perm_matrix::load_binary (std::istream& is, bool swap,
328 oct_mach_info::float_format ) 328 oct_mach_info::float_format)
329 { 329 {
330 int32_t sz; 330 int32_t sz;
331 bool colp; 331 bool colp;
332 if (! (is.read (reinterpret_cast<char *> (&sz), 4) 332 if (! (is.read (reinterpret_cast<char *> (&sz), 4)
333 && is.read (reinterpret_cast<char *> (&colp), 1))) 333 && is.read (reinterpret_cast<char *> (&colp), 1)))