diff options
author | Adrian Prantl <aprantl@apple.com> | 2013-04-19 19:56:35 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2013-04-19 19:56:35 +0000 |
commit | fc7227e4c27aa8af33b5384b281d1eecfc74858a (patch) | |
tree | 79c295947d027dbbc2539b81aaf5004ac184374c | |
parent | aff7d35b2f6bee27283ee7b16a1d403849926963 (diff) |
s/C++0x/C++11/
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179878 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/Decl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/AST/Decl.h b/include/clang/AST/Decl.h index f7286a0388..72f31e2a74 100644 --- a/include/clang/AST/Decl.h +++ b/include/clang/AST/Decl.h @@ -2783,17 +2783,17 @@ public: NumNegativeBits = Num; } - /// \brief Returns true if this is a C++0x scoped enumeration. + /// \brief Returns true if this is a C++11 scoped enumeration. bool isScoped() const { return IsScoped; } - /// \brief Returns true if this is a C++0x scoped enumeration. + /// \brief Returns true if this is a C++11 scoped enumeration. bool isScopedUsingClassTag() const { return IsScopedUsingClassTag; } - /// \brief Returns true if this is a C++0x enumeration with fixed underlying + /// \brief Returns true if this is a C++11 enumeration with fixed underlying /// type. bool isFixed() const { return IsFixed; |