r348192 - Typo correction; NFC.
Aaron Ballman via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 3 13:27:15 PST 2018
Author: aaronballman
Date: Mon Dec 3 13:27:15 2018
New Revision: 348192
URL: http://llvm.org/viewvc/llvm-project?rev=348192&view=rev
Log:
Typo correction; NFC.
Modified:
cfe/trunk/include/clang/AST/DeclCXX.h
Modified: cfe/trunk/include/clang/AST/DeclCXX.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/DeclCXX.h?rev=348192&r1=348191&r2=348192&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/DeclCXX.h (original)
+++ cfe/trunk/include/clang/AST/DeclCXX.h Mon Dec 3 13:27:15 2018
@@ -1541,7 +1541,7 @@ public:
///
/// C++11 [class]p6:
/// "A trivial class is a class that has a trivial default constructor and
- /// is trivially copiable."
+ /// is trivially copyable."
bool isTrivial() const {
return isTriviallyCopyable() && hasTrivialDefaultConstructor();
}
More information about the cfe-commits
mailing list