My Project
float_round_style.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_FLOATING_ROUND_STYLE_HPP
29 #define BSL_FLOATING_ROUND_STYLE_HPP
30 
31 #include "cstdint.hpp"
32 
33 namespace bsl
34 {
47  {
48  round_indeterminate = -1,
49  round_toward_zero = 0,
50  round_to_nearest = 1,
51  round_toward_infinity = 2,
52  round_toward_neg_infinity = 3
53  };
54 }
55 
56 #endif
::int32_t int32
defines an 32bit signed integer
Definition: cstdint.hpp:40
float_round_style
Enumerates round styles for floating points.
Definition: float_round_style.hpp:46