From 37ed08578ffd47b87d5d905c34bbeb352dd857a0 Mon Sep 17 00:00:00 2001 From: Eric Friedman Date: Mon, 9 Jun 2003 22:16:19 +0000 Subject: [PATCH] Added boost::detail::max_align to Borland-specific implementation. [SVN r18746] --- include/boost/type_traits/type_with_alignment.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/boost/type_traits/type_with_alignment.hpp b/include/boost/type_traits/type_with_alignment.hpp index 69868b6..104169a 100644 --- a/include/boost/type_traits/type_with_alignment.hpp +++ b/include/boost/type_traits/type_with_alignment.hpp @@ -137,6 +137,9 @@ struct a16{ long double s; }; } namespace detail { + +typedef ::boost::align::a16 max_align; + BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a2,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a4,true) BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC1(is_pod,::boost::align::a8,true)