fix alignas specifier

This commit is contained in:
Lucas Clemente 2013-06-15 15:55:46 +02:00
parent 3ea52f825d
commit e4ceb5d44f

View File

@ -126,7 +126,7 @@ template <size_t Alignment> struct AlignedCharArrayImpl;
#define POCO_ALIGNEDCHARARRAY_TEMPLATE_ALIGNMENT(x) \
template <> struct AlignedCharArrayImpl<x> \
{ \
char alignas(x) aligned; \
char aligned alignas(x); \
}
#define POCO_HAVE_ALIGNMENT
#endif