summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2015-08-11 21:17:53 +0000
committerAaron Ballman <aaron@aaronballman.com>2015-08-11 21:17:53 +0000
commit2e1f109c95605eca46a9a9f2b684489f1d6df280 (patch)
tree099e2f10026d304ee180f7ec24d6d75c2673cf12
parentb2e2c5741939a22884b5874eb159d9c58201bcf6 (diff)
downloadbcm5719-llvm-2e1f109c95605eca46a9a9f2b684489f1d6df280.tar.gz
bcm5719-llvm-2e1f109c95605eca46a9a9f2b684489f1d6df280.zip
Fixing a few C++0x comments to be C++11; NFC.
llvm-svn: 244670
-rw-r--r--clang/include/clang/AST/DeclCXX.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/include/clang/AST/DeclCXX.h b/clang/include/clang/AST/DeclCXX.h
index 87e3803a664..1c54e1bb62d 100644
--- a/clang/include/clang/AST/DeclCXX.h
+++ b/clang/include/clang/AST/DeclCXX.h
@@ -2279,14 +2279,14 @@ public:
}
/// \brief Determine whether this constructor is a move constructor
- /// (C++0x [class.copy]p3), which can be used to move values of the class.
+ /// (C++11 [class.copy]p3), which can be used to move values of the class.
///
/// \param TypeQuals If this constructor is a move constructor, will be set
/// to the type qualifiers on the referent of the first parameter's type.
bool isMoveConstructor(unsigned &TypeQuals) const;
/// \brief Determine whether this constructor is a move constructor
- /// (C++0x [class.copy]p3), which can be used to move values of the class.
+ /// (C++11 [class.copy]p3), which can be used to move values of the class.
bool isMoveConstructor() const {
unsigned TypeQuals = 0;
return isMoveConstructor(TypeQuals);
@@ -2396,7 +2396,7 @@ class CXXConversionDecl : public CXXMethodDecl {
void anchor() override;
/// Whether this conversion function declaration is marked
/// "explicit", meaning that it can only be applied when the user
- /// explicitly wrote a cast. This is a C++0x feature.
+ /// explicitly wrote a cast. This is a C++11 feature.
bool IsExplicitSpecified : 1;
CXXConversionDecl(ASTContext &C, CXXRecordDecl *RD, SourceLocation StartLoc,
OpenPOWER on IntegriCloud