From 66750a57ce9f6487ed7621c602a8b5988e61b711 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 3 Dec 2018 21:27:15 +0000 Subject: [PATCH] Typo correction; NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348192 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/DeclCXX.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/AST/DeclCXX.h b/include/clang/AST/DeclCXX.h index cb1de0bc57..3f0e5c959a 100644 --- a/include/clang/AST/DeclCXX.h +++ b/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.50.1