diff --git a/include/boost/endian/buffers.hpp b/include/boost/endian/buffers.hpp index 67c9efc..38e1b13 100644 --- a/include/boost/endian/buffers.hpp +++ b/include/boost/endian/buffers.hpp @@ -83,38 +83,38 @@ namespace endian BOOST_SCOPED_ENUM(align) A = align::no> class endian_buffer; - // aligned big endian floating point types + // aligned big endian floating point buffers typedef endian_buffer big_float32_buf_t; typedef endian_buffer big_float64_buf_t; - // aligned little endian floating point types + // aligned little endian floating point buffers typedef endian_buffer little_float32_buf_t; typedef endian_buffer little_float64_buf_t; - // unaligned big endian floating point types + // unaligned big endian floating point buffers typedef endian_buffer big_float32_buf_ut; typedef endian_buffer big_float64_buf_ut; - // unaligned little endian floating point types + // unaligned little endian floating point buffers typedef endian_buffer little_float32_buf_ut; typedef endian_buffer little_float64_buf_ut; - // aligned big endian signed integer types + // aligned big endian signed integer buffers typedef endian_buffer big_int16_buf_t; typedef endian_buffer big_int32_buf_t; typedef endian_buffer big_int64_buf_t; - // aligned big endian unsigned integer types + // aligned big endian unsigned integer buffers typedef endian_buffer big_uint16_buf_t; typedef endian_buffer big_uint32_buf_t; typedef endian_buffer big_uint64_buf_t; - // aligned little endian signed integer types + // aligned little endian signed integer buffers typedef endian_buffer little_int16_buf_t; typedef endian_buffer little_int32_buf_t; typedef endian_buffer little_int64_buf_t; - // aligned little endian unsigned integer types + // aligned little endian unsigned integer buffers typedef endian_buffer little_uint16_buf_t; typedef endian_buffer little_uint32_buf_t; typedef endian_buffer little_uint64_buf_t; @@ -122,7 +122,7 @@ namespace endian // aligned native endian typedefs are not provided because // types are superior for this use case - // unaligned big endian signed integer types + // unaligned big endian signed integer buffers typedef endian_buffer big_int8_buf_ut; typedef endian_buffer big_int16_buf_ut; typedef endian_buffer big_int24_buf_ut; @@ -132,7 +132,7 @@ namespace endian typedef endian_buffer big_int56_buf_ut; typedef endian_buffer big_int64_buf_ut; - // unaligned big endian unsigned integer types + // unaligned big endian unsigned integer buffers typedef endian_buffer big_uint8_buf_ut; typedef endian_buffer big_uint16_buf_ut; typedef endian_buffer big_uint24_buf_ut; @@ -142,7 +142,7 @@ namespace endian typedef endian_buffer big_uint56_buf_ut; typedef endian_buffer big_uint64_buf_ut; - // unaligned little endian signed integer types + // unaligned little endian signed integer buffers typedef endian_buffer little_int8_buf_ut; typedef endian_buffer little_int16_buf_ut; typedef endian_buffer little_int24_buf_ut; @@ -152,7 +152,7 @@ namespace endian typedef endian_buffer little_int56_buf_ut; typedef endian_buffer little_int64_buf_ut; - // unaligned little endian unsigned integer types + // unaligned little endian unsigned integer buffers typedef endian_buffer little_uint8_buf_ut; typedef endian_buffer little_uint16_buf_ut; typedef endian_buffer little_uint24_buf_ut; @@ -163,7 +163,7 @@ namespace endian typedef endian_buffer little_uint64_buf_ut; # ifdef BOOST_BIG_ENDIAN - // unaligned native endian signed integer types + // unaligned native endian signed integer buffers typedef big_int8_buf_ut native_int8_buf_ut; typedef big_int16_buf_ut native_int16_buf_ut; typedef big_int24_buf_ut native_int24_buf_ut; @@ -173,7 +173,7 @@ namespace endian typedef big_int56_buf_ut native_int56_buf_ut; typedef big_int64_buf_ut native_int64_buf_ut; - // unaligned native endian unsigned integer types + // unaligned native endian unsigned integer buffers typedef big_uint8_buf_ut native_uint8_buf_ut; typedef big_uint16_buf_ut native_uint16_buf_ut; typedef big_uint24_buf_ut native_uint24_buf_ut; @@ -183,13 +183,13 @@ namespace endian typedef big_uint56_buf_ut native_uint56_buf_ut; typedef big_uint64_buf_ut native_uint64_buf_ut; - // native endian floating point types + // native endian floating point buffers typedef big_float32_buf_ut native_float32_buf_ut; typedef big_float64_buf_ut native_float64_buf_ut; typedef big_float32_buf_t native_float32_buf_t; typedef big_float64_buf_t native_float64_buf_t; # else - // unaligned native endian signed integer types + // unaligned native endian signed integer buffers typedef little_int8_buf_ut native_int8_buf_ut; typedef little_int16_buf_ut native_int16_buf_ut; typedef little_int24_buf_ut native_int24_buf_ut; @@ -199,7 +199,7 @@ namespace endian typedef little_int56_buf_ut native_int56_buf_ut; typedef little_int64_buf_ut native_int64_buf_ut; - // unaligned native endian unsigned integer types + // unaligned native endian unsigned integer buffers typedef little_uint8_buf_ut native_uint8_buf_ut; typedef little_uint16_buf_ut native_uint16_buf_ut; typedef little_uint24_buf_ut native_uint24_buf_ut; @@ -209,7 +209,7 @@ namespace endian typedef little_uint56_buf_ut native_uint56_buf_ut; typedef little_uint64_buf_ut native_uint64_buf_ut; - // native endian floating point types + // native endian floating point buffers typedef little_float32_buf_ut native_float32_buf_ut; typedef little_float64_buf_ut native_float64_buf_ut; typedef little_float32_buf_t native_float32_buf_t;