comparison libinterp/corefcn/bitfcns.cc @ 18833:6113e0c6920b

maint: Clean up extra spaces before/after parentheses.
author Rik <rik@octave.org>
date Fri, 25 Apr 2014 13:25:25 -0700
parents 20f2b3c48c4c
children a84f0182f912
comparison
equal deleted inserted replaced
18832:f684f7075aee 18833:6113e0c6920b
593 else if (nbits < 1) 593 else if (nbits < 1)
594 mask = 0; 594 mask = 0;
595 int bits_in_type = sizeof (double) 595 int bits_in_type = sizeof (double)
596 * std::numeric_limits<unsigned char>::digits; 596 * std::numeric_limits<unsigned char>::digits;
597 NDArray m = m_arg.array_value (); 597 NDArray m = m_arg.array_value ();
598 DO_BITSHIFT ( ); 598 DO_BITSHIFT ();
599 } 599 }
600 else if (cname == "single") 600 else if (cname == "single")
601 { 601 {
602 static const int bits_in_mantissa 602 static const int bits_in_mantissa
603 = std::numeric_limits<float>::digits; 603 = std::numeric_limits<float>::digits;