diff options
author | JF Bastien <jfbastien@apple.com> | 2019-07-30 17:21:30 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-07-30 17:21:30 +0000 |
commit | 7cb03c0dc4f5672c43bc47d8c017268384321479 (patch) | |
tree | 093dcb552f15ebf2172e9d632f6fc5489a639380 | |
parent | d0b6f42936bfb6d56d325c732ae79400c9c6016a (diff) | |
download | bcm5719-llvm-7cb03c0dc4f5672c43bc47d8c017268384321479.tar.gz bcm5719-llvm-7cb03c0dc4f5672c43bc47d8c017268384321479.zip |
[NFC] remove obsolete comment
LLVM_ALIGNAS was removed from this class in http://llvm.org/r338099 but the comment was left there. The class is still sommewhat relevant despite the comment, let's keep it there with its one use.
llvm-svn: 367336
-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 <> |