[cfe-commits] r59729 - /cfe/trunk/lib/Sema/SemaOverload.cpp
Douglas Gregor
doug.gregor at gmail.com
Thu Nov 20 05:33:40 PST 2008
Author: dgregor
Date: Thu Nov 20 07:33:37 2008
New Revision: 59729
URL: http://llvm.org/viewvc/llvm-project?rev=59729&view=rev
Log:
Fix strange quote characters
Modified:
cfe/trunk/lib/Sema/SemaOverload.cpp
Modified: cfe/trunk/lib/Sema/SemaOverload.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Sema/SemaOverload.cpp?rev=59729&r1=59728&r2=59729&view=diff
==============================================================================
--- cfe/trunk/lib/Sema/SemaOverload.cpp (original)
+++ cfe/trunk/lib/Sema/SemaOverload.cpp Thu Nov 20 07:33:37 2008
@@ -2993,10 +2993,10 @@
//
// 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
More information about the cfe-commits
mailing list