[libcxx] r242197 - Remove non-ascii characters

Eric Fiselier eric at efcs.ca
Tue Jul 14 13:45:48 PDT 2015


Author: ericwf
Date: Tue Jul 14 15:45:48 2015
New Revision: 242197

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

Modified:
    libcxx/trunk/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp

Modified: libcxx/trunk/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp?rev=242197&r1=242196&r2=242197&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp Tue Jul 14 15:45:48 2015
@@ -28,15 +28,15 @@
 /// C++14 [func.require] 20.9.1
 ///
 /// Define INVOKE (f, t1, t2, ..., tN) as follows:
-///   (1.1) — (t1.*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is an object of
+///   (1.1) - (t1.*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is an object of
 ///   type T or a reference to an object of type T or a reference to an object of a type derived from T;
-///   (1.2) — ((*t1).*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is not one of
+///   (1.2) - ((*t1).*f)(t2, ..., tN) when f is a pointer to a member function of a class T and t1 is not one of
 ///   the types described in the previous item;
-///   (1.3) — t1.*f when N == 1 and f is a pointer to member data of a class T and t1 is an object of type T or a
+///   (1.3) - t1.*f when N == 1 and f is a pointer to member data of a class T and t1 is an object of type T or a
 ///   reference to an object of type T or a reference to an object of a type derived from T;
-///   (1.4) — (*t1).*f when N == 1 and f is a pointer to member data of a class T and t1 is not one of the types
+///   (1.4) - (*t1).*f when N == 1 and f is a pointer to member data of a class T and t1 is not one of the types
 ///   described in the previous item;
-///   (1.5) — f(t1, t2, ..., tN) in all other cases.
+///   (1.5) - f(t1, t2, ..., tN) in all other cases.
 
 #include <functional>
 #include <type_traits>






More information about the cfe-commits mailing list