use_cmath.cpp 72 B

123456
  1. #include <cmath>
  2. bool foo(double arg)
  3. {
  4. return std::isfinite(arg);
  5. }