Author: erichkeane Date: Tue Oct 24 15:00:25 2017 New Revision: 316521 URL: http://llvm.org/viewvc/llvm-project?rev=316521&view=rev Log: Replaced unicode characters with ASCII, as introduced in r316518.
Modified: cfe/trunk/lib/AST/Type.cpp Modified: cfe/trunk/lib/AST/Type.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/Type.cpp?rev=316521&r1=316520&r2=316521&view=diff ============================================================================== --- cfe/trunk/lib/AST/Type.cpp (original) +++ cfe/trunk/lib/AST/Type.cpp Tue Oct 24 15:00:25 2017 @@ -2260,8 +2260,8 @@ bool QualType::hasUniqueObjectRepresenta // The predicate condition for a template specialization // has_unique_object_representations<T> 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::hasUniqueObjectRepresenta // 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::hasUniqueObjectRepresenta 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; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits