Revert r235219, it's not needed after r235450.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235480 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Yaron Keren 2015-04-22 05:06:57 +00:00
parent bc9eee72cf
commit cfe24ac62f

View File

@ -22,11 +22,6 @@ namespace llvm {
template <typename T>
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<T> with a manually specified alignment.
#pragma warning(suppress : 4324)
#endif
T t;
private:
AlignmentCalcImpl() {} // Never instantiate.