comparison libinterp/interp-core/jit-typeinfo.cc @ 15219:aeba1adfd76b

Correct small typo in jit-typeinfo.cc
author Melvin Robinson <melvin.robinson@mavs.uta.edu>
date Thu, 23 Aug 2012 10:09:41 -0500
parents 9020dddc925a
children de9bfcf637df
comparison
equal deleted inserted replaced
15218:94d512d712e3 15219:aeba1adfd76b
380 static inline int 380 static inline int
381 xisint (double x) 381 xisint (double x)
382 { 382 {
383 return (D_NINT (x) == x 383 return (D_NINT (x) == x
384 && ((x >= 0 && x < std::numeric_limits<int>::max ()) 384 && ((x >= 0 && x < std::numeric_limits<int>::max ())
385 || (x <= 0 && x > std::numermic_limits<int>::min ()))); 385 || (x <= 0 && x > std::numeric_limits<int>::min ())));
386 } 386 }
387 387
388 extern "C" Complex 388 extern "C" Complex
389 octave_jit_pow_scalar_scalar (double lhs, double rhs) 389 octave_jit_pow_scalar_scalar (double lhs, double rhs)
390 { 390 {