From fcd10f1cea6632256ffd093e8519ba0da6334026 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 10 Dec 2015 11:34:56 +1100 Subject: [PATCH] types/bits: add bytes_type convenience wrapper --- types/bits.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/bits.hpp b/types/bits.hpp index f1c6161b..b0f2e6a8 100644 --- a/types/bits.hpp +++ b/types/bits.hpp @@ -60,6 +60,11 @@ template <> struct bits_type<64u> { }; +template +struct bytes_type : public bits_type +{ }; + + template struct sized_type : public bits_type { };