mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
14 lines
459 B
C++
14 lines
459 B
C++
#ifndef SPROUT_MATH_CLASSIFICATIONS_HPP
|
|
#define SPROUT_MATH_CLASSIFICATIONS_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/fpclassify.hpp>
|
|
#include <sprout/math/isfinite.hpp>
|
|
#include <sprout/math/isinf.hpp>
|
|
#include <sprout/math/isnan.hpp>
|
|
#include <sprout/math/isnormal.hpp>
|
|
#include <sprout/math/iszero.hpp>
|
|
#include <sprout/math/issubnormal.hpp>
|
|
#include <sprout/math/signbit.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_CLASSIFICATIONS_HPP
|