From e4ceb5d44f5115b9c2bbf1ef1d5a3f9bc2d52324 Mon Sep 17 00:00:00 2001 From: Lucas Clemente Date: Sat, 15 Jun 2013 15:55:46 +0200 Subject: [PATCH] fix alignas specifier --- Foundation/include/Poco/Alignment.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Foundation/include/Poco/Alignment.h b/Foundation/include/Poco/Alignment.h index 51e92b464..d6a623a2d 100644 --- a/Foundation/include/Poco/Alignment.h +++ b/Foundation/include/Poco/Alignment.h @@ -126,7 +126,7 @@ template struct AlignedCharArrayImpl; #define POCO_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(x) \ template <> struct AlignedCharArrayImpl \ { \ - char alignas(x) aligned; \ + char aligned alignas(x); \ } #define POCO_HAVE_ALIGNMENT #endif