]> granicus.if.org Git - clang/commitdiff
s/C++0x/C++11/
authorAdrian Prantl <aprantl@apple.com>
Fri, 19 Apr 2013 19:56:35 +0000 (19:56 +0000)
committerAdrian Prantl <aprantl@apple.com>
Fri, 19 Apr 2013 19:56:35 +0000 (19:56 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179878 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/AST/Decl.h

index f7286a0388e379f08f90eb31ce5617af296a00d5..72f31e2a74867976815dc718ab8f6954a9cd9047 100644 (file)
@@ -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;