Skip to content
Snippets Groups Projects
Commit 26a36ec1 authored by Eric Fiselier's avatar Eric Fiselier
Browse files

Remove non-ascii characters introduced in r307513

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@307514 91177308-0d34-0410-b5e6-96231b3b80d8
parent a468c802
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment