From 149bcac2858a334430353f71b39185c65d901701 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 3 Dec 2018 21:27:15 +0000 Subject: [PATCH] Typo correction; NFC. llvm-svn: 348192 --- clang/include/clang/AST/DeclCXX.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/AST/DeclCXX.h b/clang/include/clang/AST/DeclCXX.h index cb1de0b..3f0e5c9 100644 --- a/clang/include/clang/AST/DeclCXX.h +++ b/clang/include/clang/AST/DeclCXX.h @@ -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(); } -- 2.7.4