From c60a27cb7d28c8275794359d529a32b66106a196 Mon Sep 17 00:00:00 2001 From: Yaron Keren Date: Wed, 22 Apr 2015 05:06:57 +0000 Subject: [PATCH] Revert r235219, it's not needed after r235450. llvm-svn: 235480 --- llvm/include/llvm/Support/AlignOf.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/llvm/include/llvm/Support/AlignOf.h b/llvm/include/llvm/Support/AlignOf.h index 4e0a899fbbe3..061d5acf2322 100644 --- a/llvm/include/llvm/Support/AlignOf.h +++ b/llvm/include/llvm/Support/AlignOf.h @@ -22,11 +22,6 @@ namespace llvm { template struct AlignmentCalcImpl { char x; -#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. -#pragma warning(suppress : 4324) -#endif T t; private: AlignmentCalcImpl() {} // Never instantiate.