diff options
author | Manuel Klimek <klimek@google.com> | 2013-10-07 09:15:41 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-10-07 09:15:41 +0000 |
commit | 91e48586ae1e49d56895645fd219462a421bd479 (patch) | |
tree | d9232dacb34d9276da482322df5da6ac4e3b0559 /clang/unittests/Format/FormatTest.cpp | |
parent | 39ff5f6702ee2c67042e809c94564459c298ea74 (diff) | |
download | bcm5719-llvm-91e48586ae1e49d56895645fd219462a421bd479.tar.gz bcm5719-llvm-91e48586ae1e49d56895645fd219462a421bd479.zip |
Fix incorrect detection of class definitions with alignas specification.
llvm-svn: 192094
Diffstat (limited to 'clang/unittests/Format/FormatTest.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 85813bcaffc..6bb38e92f87 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -4468,6 +4468,7 @@ TEST_F(FormatTest, UnderstandContextOfRecordTypeKeywords) { verifyFormat("class __attribute__(X) Z {\n} n;"); verifyFormat("class __declspec(X) Z {\n} n;"); verifyFormat("class A##B##C {\n} n;"); + verifyFormat("class alignas(16) Z {\n} n;"); // Redefinition from nested context: verifyFormat("class A::B::C {\n} n;"); |