]> granicus.if.org Git - llvm/commitdiff
[NFC] remove obsolete comment
authorJF Bastien <jfbastien@apple.com>
Tue, 30 Jul 2019 17:21:30 +0000 (17:21 +0000)
committerJF Bastien <jfbastien@apple.com>
Tue, 30 Jul 2019 17:21:30 +0000 (17:21 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@367336 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/TrailingObjects.h

index 8b5daefb7aa53f4638e18f18e784ece0fed49829..ddcdda58196b67c63695ac5380af2088bd1e9295 100644 (file)
@@ -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 <>