mirror of
https://github.com/boostorg/convert.git
synced 2026-01-19 04:02:18 +00:00
14APR-20:37 reduced sizes of enum types
This commit is contained in:
@@ -11,9 +11,9 @@
|
||||
|
||||
namespace boost { namespace cnv
|
||||
{
|
||||
enum class adjust { left, right, center };
|
||||
enum class base { bin =2, oct =8, dec =10, hex =16 };
|
||||
enum class notation { fixed, scientific, hex };
|
||||
enum class adjust : uint8_t { left, right, center };
|
||||
enum class base : uint8_t { bin =2, oct =8, dec =10, hex =16 };
|
||||
enum class notation : uint8_t { fixed, scientific, hex };
|
||||
|
||||
namespace parameter
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user