1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Suppressing the C4324 warnings generated by MSVC. This is the only declarative instance that would generate the warning, but it accounted for about 525+ warnings due to template instantiations. This is a marginal-value warning which we may decide to disable more broadly, but since this header is in Support and may be used out of tree, it's a low burden for us to be warning-free in this case.

llvm-svn: 235219
This commit is contained in:
Aaron Ballman 2015-04-17 19:35:44 +00:00
parent f8369b5437
commit c32277bfbc

View File

@ -22,6 +22,11 @@ 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.