My Project
float_denorm_style.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_FLOATING_DENORM_STYLE_HPP
29 #define BSL_FLOATING_DENORM_STYLE_HPP
30 
31 #include "cstdint.hpp"
32 
33 namespace bsl
34 {
47  {
48  denorm_indeterminate = -1,
49  denorm_absent = 0,
50  denorm_present = 1
51  };
52 }
53 
54 #endif
::int32_t int32
defines an 32bit signed integer
Definition: cstdint.hpp:40
float_denorm_style
Enumerates subnormal values for floating points.
Definition: float_denorm_style.hpp:46