r179878 - s/C++0x/C++11/

Adrian Prantl aprantl at apple.com
Fri Apr 19 12:56:35 PDT 2013


Author: adrian
Date: Fri Apr 19 14:56:35 2013
New Revision: 179878

URL: http://llvm.org/viewvc/llvm-project?rev=179878&view=rev
Log:
s/C++0x/C++11/

Modified:
    cfe/trunk/include/clang/AST/Decl.h

Modified: cfe/trunk/include/clang/AST/Decl.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/Decl.h?rev=179878&r1=179877&r2=179878&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/Decl.h (original)
+++ cfe/trunk/include/clang/AST/Decl.h Fri Apr 19 14:56:35 2013
@@ -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;





More information about the cfe-commits mailing list