diff options
author | Eric Fiselier <eric@efcs.ca> | 2015-07-14 20:45:48 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2015-07-14 20:45:48 +0000 |
commit | 16270a0b09f6918f9785aad0cbf531798f297d6c (patch) | |
tree | 27b866ea492d45582b27ca7199512fe25fc89e72 | |
parent | 2069de9813809b6d1e9527495420e8220a3e824e (diff) | |
download | bcm5719-llvm-16270a0b09f6918f9785aad0cbf531798f297d6c.tar.gz bcm5719-llvm-16270a0b09f6918f9785aad0cbf531798f297d6c.zip |
Remove non-ascii characters
llvm-svn: 242197
-rw-r--r-- | libcxx/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp b/libcxx/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp index 2dc22f84fc5..4b9cc76f7e4 100644 --- a/libcxx/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp +++ b/libcxx/test/std/utilities/function.objects/func.invoke/invoke.pass.cpp @@ -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> |