diff options
author | Douglas Gregor <dgregor@apple.com> | 2008-11-20 13:33:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2008-11-20 13:33:37 +0000 |
commit | a967a6f6af170fcfdcd4ea24ba2ba5e072f6cded (patch) | |
tree | ce855404d42ba048eaf54a3d43fd6159f4fa47d0 /lib/Sema/SemaOverload.cpp | |
parent | b28d6de75e0cb27ce3106ce6052f87ad0ab276d7 (diff) |
Fix strange quote characters
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59729 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index 77546fd246..36f2def2f1 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -2993,10 +2993,10 @@ Sema::BuildCallToObjectOfClassType(Expr *Object, SourceLocation LParenLoc, // // where cv-qualifier is the same cv-qualification as, or a // greater cv-qualification than, cv, and where conversion-type-id - // denotes the type “pointer to function of (P1,...,Pn) returning - // R”, or the type “reference to pointer to function of - // (P1,...,Pn) returning R”, or the type “reference to function - // of (P1,...,Pn) returning R”, a surrogate call function [...] + // denotes the type "pointer to function of (P1,...,Pn) returning + // R", or the type "reference to pointer to function of + // (P1,...,Pn) returning R", or the type "reference to function + // of (P1,...,Pn) returning R", a surrogate call function [...] // is also considered as a candidate function. Similarly, // surrogate call functions are added to the set of candidate // functions for each conversion function declared in an |