From fd466aa498fc093fb9e969775a49c0a0a10d8832 Mon Sep 17 00:00:00 2001 From: Douglas Katzman Date: Thu, 14 May 2015 18:07:04 +0000 Subject: [PATCH] Update obsolete comments, fix typo, delete trailing space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@237378 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/AlignOf.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/llvm/Support/AlignOf.h b/include/llvm/Support/AlignOf.h index f564fd353d8..574b514aef3 100644 --- a/include/llvm/Support/AlignOf.h +++ b/include/llvm/Support/AlignOf.h @@ -25,9 +25,9 @@ struct AlignmentCalcImpl { #if defined(_MSC_VER) // Disables "structure was padded due to __declspec(align())" warnings that are // generated by any class using AlignOf with a manually specified alignment. -// Although the warning is disabled in the LLVM project we need this pragma +// Although the warning is disabled in the LLVM project we need this pragma // as AlignOf.h is a published support header that's available for use -// out-of-tree, and we would like that to ompile cleanly at /W4. +// out-of-tree, and we would like that to compile cleanly at /W4. #pragma warning(suppress : 4324) #endif T t; @@ -198,12 +198,12 @@ union SizerImpl { } // end namespace detail /// \brief This union template exposes a suitably aligned and sized character -/// array member which can hold elements of any of up to four types. +/// array member which can hold elements of any of up to ten types. /// /// These types may be arrays, structs, or any other types. The goal is to /// expose a char array buffer member which can be used as suitable storage for -/// a placement new of any of these types. Support for more than seven types can -/// be added at the cost of more boiler plate. +/// a placement new of any of these types. Support for more than ten types can +/// be added at the cost of more boilerplate. template