From a0bb26cf985a3a287fcc9efe8d66d44c54214d7c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Wed, 24 Aug 2005 16:49:32 +0000 Subject: [PATCH] Fix type_with_alignment and aligned_storage docs mix up. [SVN r30650] --- doc/type_traits.qbk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/type_traits.qbk b/doc/type_traits.qbk index 41b7c86..2777f24 100644 --- a/doc/type_traits.qbk +++ b/doc/type_traits.qbk @@ -1197,13 +1197,13 @@ __header ` #include ` or ` #include + template struct aligned_storage { typedef __below type; }; -__type a built-in or POD type with an alignment +__type a built-in or POD type with size `Size` and an alignment that is a multiple of `Align`. __header ` #include ` or ` #include ` @@ -2794,13 +2794,13 @@ __header ` #include ` or ` #include + template struct type_with_alignment { typedef __below type; }; -__type a built-in or POD type with size `Size` and an alignment +__type a built-in or POD type with an alignment that is a multiple of `Align`. __header ` #include ` or ` #include `