From 62e08f4f12f4370fd3e3b31074b2de91fd1db53b Mon Sep 17 00:00:00 2001 From: Erich Keane Date: Tue, 24 Oct 2017 22:00:25 +0000 Subject: [PATCH] Replaced unicode characters with ASCII, as introduced in r316518. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@316521 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/Type.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/AST/Type.cpp b/lib/AST/Type.cpp index 15af195064..5e7cf34704 100644 --- a/lib/AST/Type.cpp +++ b/lib/AST/Type.cpp @@ -2260,8 +2260,8 @@ bool QualType::hasUniqueObjectRepresentations(const ASTContext &Context) const { // The predicate condition for a template specialization // has_unique_object_representations shall be // satisfied if and only if: - // (9.1) — T is trivially copyable, and - // (9.2) — any two objects of type T with the same value have the same + // (9.1) - T is trivially copyable, and + // (9.2) - any two objects of type T with the same value have the same // object representation, where two objects // of array or non-union class type are considered to have the same value // if their respective sequences of @@ -2272,8 +2272,7 @@ bool QualType::hasUniqueObjectRepresentations(const ASTContext &Context) const { // The set of scalar types for which this condition holds is // implementation-defined. [ Note: If a type has padding // bits, the condition does not hold; otherwise, the condition holds true - // for unsigned integral types. — end - // note ] + // for unsigned integral types. -- end note ] if (isNull()) return false; @@ -2282,7 +2281,7 @@ bool QualType::hasUniqueObjectRepresentations(const ASTContext &Context) const { return Context.getBaseElementType(*this).hasUniqueObjectRepresentations( Context); - // (9.1) — T is trivially copyable, and + // (9.1) - T is trivially copyable, and if (!isTriviallyCopyableType(Context)) return false; -- 2.40.0