Bug 662971 - Silence the clang warnings issued because of alignment requirements increase when compiling mfbt/Util.h; r=Waldo

--HG--
extra : rebase_source : a2bb6f588674602993c6603abda01487b72b6923
This commit is contained in:
Ehsan Akhgari 2011-06-17 15:59:47 -04:00
parent 0b938f2384
commit 14a79314b1

View File

@ -217,7 +217,7 @@ struct AlignedStorage2
} u;
const T *addr() const { return (const T *)u.bytes; }
T *addr() { return (T *)u.bytes; }
T *addr() { return (T *)(void *)u.bytes; }
};
/*