diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-02 12:01:23 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2013-01-02 12:01:23 +0000 |
commit | 4e24f0f711e2c9fde79f19fa1c80deaab3f3b356 (patch) | |
tree | e74a17e0ac777f3699a8a60162754d4ed5fcd67a /include/clang/Sema/DeclSpec.h | |
parent | 3b844ba7d5be205a9b4f5f0b0d1b7978977f4b8c (diff) |
s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few nearby 'C++0x' comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171372 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Sema/DeclSpec.h')
-rw-r--r-- | include/clang/Sema/DeclSpec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Sema/DeclSpec.h b/include/clang/Sema/DeclSpec.h index d7a4dc33e0..f3f32e3d48 100644 --- a/include/clang/Sema/DeclSpec.h +++ b/include/clang/Sema/DeclSpec.h @@ -1905,7 +1905,7 @@ public: void getCXX11AttributeRanges(SmallVector<SourceRange, 4> &Ranges) { AttributeList *AttrList = Attrs.getList(); while (AttrList) { - if (AttrList->isCXX0XAttribute()) + if (AttrList->isCXX11Attribute()) Ranges.push_back(AttrList->getRange()); AttrList = AttrList->getNext(); } |