Skip to content

Commit bf166ce

Browse files
committed
Remove non-ascii characters introduced in r307513
llvm-svn: 307514
1 parent 166c6e6 commit bf166ce

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clang/lib/Sema/SemaCoroutine.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ static QualType lookupPromiseType(Sema &S, const FunctionDecl *FD,
8787
// [over.match.funcs]4
8888
// For non-static member functions, the type of the implicit object
8989
// parameter is
90-
// — “lvalue reference to cv X for functions declared without a
91-
// ref-qualifier or with the & ref-qualifier
92-
// — “rvalue reference to cv X for functions declared with the &&
93-
// ref-qualifier
90+
// -- "lvalue reference to cv X" for functions declared without a
91+
// ref-qualifier or with the & ref-qualifier
92+
// -- "rvalue reference to cv X" for functions declared with the &&
93+
// ref-qualifier
9494
QualType T =
9595
MD->getThisType(S.Context)->getAs<PointerType>()->getPointeeType();
9696
T = FnType->getRefQualifier() == RQ_RValue

0 commit comments

Comments
 (0)