2
0
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:
Vladimir Batov
2022-04-14 20:37:08 +10:00
parent d6cffb7001
commit ba2d5b4121

View File

@@ -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
{