summaryrefslogtreecommitdiffstats
path: root/include/clang/Basic/SourceManager.h
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2018-07-17 22:24:11 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2018-07-17 22:24:11 +0000
commited683dcc4ef0546d1e6c04337222d90bac7b785c (patch)
tree0eb26d78bec682d1e9ea4040217adc48ec770c09 /include/clang/Basic/SourceManager.h
parent43554aef455595d09c8da17584ceeb7a65c4fc2a (diff)
Replace LLVM_ALIGNAS with just alignas.
Various places in Clang and LLVM are already using alignas; it seems our minimum host configuration now requires it. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@337330 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r--include/clang/Basic/SourceManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h
index 33e63d9d40..99c36f4cdf 100644
--- a/include/clang/Basic/SourceManager.h
+++ b/include/clang/Basic/SourceManager.h
@@ -92,7 +92,7 @@ namespace SrcMgr {
/// One instance of this struct is kept for every file loaded or used.
///
/// This object owns the MemoryBuffer object.
- class LLVM_ALIGNAS(8) ContentCache {
+ class alignas(8) ContentCache {
enum CCFlags {
/// Whether the buffer is invalid.
InvalidFlag = 0x01,