r307514 - Remove non-ascii characters introduced in r307513

Eric Fiselier via cfe-commits cfe-commits at lists.llvm.org
Sun Jul 9 19:52:34 PDT 2017


Author: ericwf
Date: Sun Jul  9 19:52:34 2017
New Revision: 307514

URL: http://llvm.org/viewvc/llvm-project?rev=307514&view=rev
Log:
Remove non-ascii characters introduced in r307513

Modified:
    cfe/trunk/lib/Sema/SemaCoroutine.cpp

Modified: cfe/trunk/lib/Sema/SemaCoroutine.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaCoroutine.cpp?rev=307514&r1=307513&r2=307514&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaCoroutine.cpp (original)
+++ cfe/trunk/lib/Sema/SemaCoroutine.cpp Sun Jul  9 19:52:34 2017
@@ -87,10 +87,10 @@ static QualType lookupPromiseType(Sema &
       // [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




More information about the cfe-commits mailing list