<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Tue, Aug 11, 2015 at 2:17 PM, Aaron Ballman via cfe-commits <span dir="ltr"><<a href="mailto:cfe-commits@lists.llvm.org" target="_blank">cfe-commits@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Author: aaronballman<br>
Date: Tue Aug 11 16:17:53 2015<br>
New Revision: 244670<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=244670&view=rev" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project?rev=244670&view=rev</a><br>
Log:<br>
Fixing a few C++0x comments to be C++11; NFC.<br></blockquote><div><br></div><div>Did you check whether these comments are still accurate when referencing the C++11 IS? The relevant paragraph is now p2 in the latest drafts, but I didn't check earlier ones. (C++0x was used in these comments rather than C++11 partly as a reminder to check that the references are still right when updating them.)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Modified:<br>
    cfe/trunk/include/clang/AST/DeclCXX.h<br>
<br>
Modified: cfe/trunk/include/clang/AST/DeclCXX.h<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=244670&r1=244669&r2=244670&view=diff" rel="noreferrer" target="_blank">http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=244670&r1=244669&r2=244670&view=diff</a><br>
==============================================================================<br>
--- cfe/trunk/include/clang/AST/DeclCXX.h (original)<br>
+++ cfe/trunk/include/clang/AST/DeclCXX.h Tue Aug 11 16:17:53 2015<br>
@@ -2279,14 +2279,14 @@ public:<br>
   }<br>
<br>
   /// \brief Determine whether this constructor is a move constructor<br>
-  /// (C++0x [class.copy]p3), which can be used to move values of the class.<br>
+  /// (C++11 [class.copy]p3), which can be used to move values of the class.<br>
   ///<br>
   /// \param TypeQuals If this constructor is a move constructor, will be set<br>
   /// to the type qualifiers on the referent of the first parameter's type.<br>
   bool isMoveConstructor(unsigned &TypeQuals) const;<br>
<br>
   /// \brief Determine whether this constructor is a move constructor<br>
-  /// (C++0x [class.copy]p3), which can be used to move values of the class.<br>
+  /// (C++11 [class.copy]p3), which can be used to move values of the class.<br>
   bool isMoveConstructor() const {<br>
     unsigned TypeQuals = 0;<br>
     return isMoveConstructor(TypeQuals);<br>
@@ -2396,7 +2396,7 @@ class CXXConversionDecl : public CXXMeth<br>
   void anchor() override;<br>
   /// Whether this conversion function declaration is marked<br>
   /// "explicit", meaning that it can only be applied when the user<br>
-  /// explicitly wrote a cast. This is a C++0x feature.<br>
+  /// explicitly wrote a cast. This is a C++11 feature.<br>
   bool IsExplicitSpecified : 1;<br>
<br>
   CXXConversionDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,<br>
<br>
<br>
_______________________________________________<br>
cfe-commits mailing list<br>
<a href="mailto:cfe-commits@lists.llvm.org">cfe-commits@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits</a><br>
</blockquote></div><br></div></div>