diff options
-rw-r--r-- | llvm/include/llvm/Support/TrailingObjects.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/include/llvm/Support/TrailingObjects.h b/llvm/include/llvm/Support/TrailingObjects.h index 8b5daefb7aa..ddcdda58196 100644 --- a/llvm/include/llvm/Support/TrailingObjects.h +++ b/llvm/include/llvm/Support/TrailingObjects.h @@ -87,11 +87,6 @@ protected: template <typename T> struct OverloadToken {}; }; -/// This helper template works-around MSVC 2013's lack of useful -/// alignas() support. The argument to alignas(), in MSVC, is -/// required to be a literal integer. But, you *can* use template -/// specialization to select between a bunch of different alignas() -/// expressions... template <int Align> class TrailingObjectsAligner : public TrailingObjectsBase {}; template <> |