[NFC] Don't use LLVM_ALIGNAS (#26411)

It's not useful anymore, and I'm about to remove it in upstream.
This commit is contained in:
JF Bastien
2019-07-30 13:14:02 -07:00
committed by GitHub
parent a648714d04
commit 31e6a989f5
4 changed files with 9 additions and 18 deletions

View File

@@ -66,8 +66,7 @@ public:
private:
template <typename T>
union UninitializedStorage {
LLVM_ALIGNAS(alignof(T))
char Storage[sizeof(T)];
alignas(T) char Storage[sizeof(T)];
template <typename... A>
void emplace(A && ...value) {