[AST][NFC] Fixes a comment typo

Also a test for commit access.
This commit is contained in:
Mark de Wever 2019-11-04 22:27:53 +01:00
parent 1bfcc60828
commit 403739b2fd
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
data().HasIrrelevantDestructor = false;
// C++11 [class.copy]p18:
// The implicitly-declared copy assignment oeprator for a class X will
// The implicitly-declared copy assignment operator for a class X will
// have the form 'X& X::operator=(const X&)' if each direct base class B
// of X has a copy assignment operator whose parameter is of type 'const
// B&', 'const volatile B&', or 'B' [...]