Merge pull request #219 from lucas-clemente/patch-1

fix alignas specifier
This commit is contained in:
Aleksandar Fabijanic
2013-06-15 07:43:58 -07:00

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