Truthify a comment.

llvm-svn: 157232
This commit is contained in:
Richard Smith 2012-05-22 01:41:27 +00:00
parent 61b7fa2985
commit ede15af699
1 changed files with 2 additions and 2 deletions

View File

@ -1610,8 +1610,8 @@ public:
return cast<CXXMethodDecl>(FunctionDecl::getCanonicalDecl());
}
/// isUserProvided - True if it is either an implicit constructor or
/// if it was defaulted or deleted on first declaration.
/// isUserProvided - True if this method is user-declared and was not
/// deleted or defaulted on its first declaration.
bool isUserProvided() const {
return !(isDeleted() || getCanonicalDecl()->isDefaulted());
}