From 26a36ec1d1e9305cd0fa5a4504742d92fddc7947 Mon Sep 17 00:00:00 2001 From: Eric Fiselier <eric@efcs.ca> Date: Mon, 10 Jul 2017 02:52:34 +0000 Subject: [PATCH] Remove non-ascii characters introduced in r307513 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@307514 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Sema/SemaCoroutine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Sema/SemaCoroutine.cpp b/lib/Sema/SemaCoroutine.cpp index 05bf5319a50..71b74acc068 100644 --- a/lib/Sema/SemaCoroutine.cpp +++ b/lib/Sema/SemaCoroutine.cpp @@ -87,10 +87,10 @@ static QualType lookupPromiseType(Sema &S, const FunctionDecl *FD, // [over.match.funcs]4 // For non-static member functions, the type of the implicit object // parameter is - // — “lvalue reference to cv X†for functions declared without a - // ref-qualifier or with the & ref-qualifier - // — “rvalue reference to cv X†for functions declared with the && - // ref-qualifier + // -- "lvalue reference to cv X" for functions declared without a + // ref-qualifier or with the & ref-qualifier + // -- "rvalue reference to cv X" for functions declared with the && + // ref-qualifier QualType T = MD->getThisType(S.Context)->getAs<PointerType>()->getPointeeType(); T = FnType->getRefQualifier() == RQ_RValue -- GitLab