From fe0467e8b7580160e090d617e0c339da5027bd03 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Thu, 8 Jun 2017 09:03:13 +0100 Subject: [PATCH] Fixed alignment helper issues for targets that don't support 8 bit types. --- src/alignment.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/alignment.h b/src/alignment.h index 532ef3a5..18f20aea 100644 --- a/src/alignment.h +++ b/src/alignment.h @@ -65,10 +65,10 @@ namespace etl { public: - typedef typename type_with_alignment_matcher::value, ALIGNMENT, T2, T3, T4, T5, T6, T7, T8, void>::type type; + typedef typename type_with_alignment_matcher::value, ALIGNMENT, T2, T3, T4, T5, T6, T7, T8, void>::type type; }; - // Non-matching alignment, non left. + // Non-matching alignment, none left. template class type_with_alignment_matcher { @@ -83,7 +83,7 @@ namespace etl { public: - typedef typename type_with_alignment_matcher::value, ALIGNMENT, T1, T2, T3, T4, T5, T6, T7, T8>::type type; + typedef typename type_with_alignment_matcher::value, ALIGNMENT, T1, T2, T3, T4, T5, T6, T7, T8>::type type; }; } @@ -96,7 +96,7 @@ namespace etl { public: - typedef typename __private_alignment__::type_with_alignment_helper::type type; + typedef typename __private_alignment__::type_with_alignment_helper::type type; }; //***************************************************************************