浏览代码

Change a bunch of comments from C++1z to C++17. NFC

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@317212 91177308-0d34-0410-b5e6-96231b3b80d8
Marshall Clow 7 年之前
父节点
当前提交
2e390822e5
共有 17 个文件被更改,包括 17 次插入17 次删除
  1. 1 1
      test/libcxx/selftest/test_macros.pass.cpp
  2. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun.cxx1z.fail.cpp
  3. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1.cxx1z.fail.cpp
  4. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_ref_t.cxx1z.fail.cpp
  5. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_t.cxx1z.fail.cpp
  6. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref.cxx1z.fail.cpp
  7. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref1.cxx1z.fail.cpp
  8. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref_t.cxx1z.fail.cpp
  9. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_t.cxx1z.fail.cpp
  10. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun.cxx1z.fail.cpp
  11. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1.cxx1z.fail.cpp
  12. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_ref_t.cxx1z.fail.cpp
  13. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_t.cxx1z.fail.cpp
  14. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref.cxx1z.fail.cpp
  15. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref1.cxx1z.fail.cpp
  16. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref_t.cxx1z.fail.cpp
  17. 1 1
      test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_t.cxx1z.fail.cpp

+ 1 - 1
test/libcxx/selftest/test_macros.pass.cpp

@@ -56,7 +56,7 @@ void test_libcxx_macros()
 # endif
 # endif
 #endif
 #endif
 
 
-//  ===== C++1z features =====
+//  ===== C++17 features =====
 }
 }
 
 
 int main()
 int main()

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<cReturnable S, ClassType T>
 // template<cReturnable S, ClassType T>
 //   const_mem_fun_t<S,T>
 //   const_mem_fun_t<S,T>
 //   mem_fun(S (T::*f)() const);
 //   mem_fun(S (T::*f)() const);
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T, CopyConstructible A>
 // template<Returnable S, ClassType T, CopyConstructible A>
 //   const_mem_fun1_t<S,T,A>
 //   const_mem_fun1_t<S,T,A>
 //   mem_fun(S (T::*f)(A) const);
 //   mem_fun(S (T::*f)(A) const);
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_ref_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // const_mem_fun1_ref_t
 // const_mem_fun1_ref_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun1_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // const_mem_fun1_t
 // const_mem_fun1_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T>
 // template<Returnable S, ClassType T>
 //   const_mem_fun_ref_t<S,T>
 //   const_mem_fun_ref_t<S,T>
 //   mem_fun_ref(S (T::*f)() const);
 //   mem_fun_ref(S (T::*f)() const);
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref1.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T, CopyConstructible A>
 // template<Returnable S, ClassType T, CopyConstructible A>
 //   const_mem_fun1_ref_t<S,T,A>
 //   const_mem_fun1_ref_t<S,T,A>
 //   mem_fun_ref(S (T::*f)(A) const);
 //   mem_fun_ref(S (T::*f)(A) const);
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_ref_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // const_mem_fun_ref_t
 // const_mem_fun_ref_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/const_mem_fun_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // const_mem_fun_t
 // const_mem_fun_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T>
 // template<Returnable S, ClassType T>
 //   mem_fun_t<S,T>
 //   mem_fun_t<S,T>
 //   mem_fun(S (T::*f)());
 //   mem_fun(S (T::*f)());
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T, CopyConstructible A>
 // template<Returnable S, ClassType T, CopyConstructible A>
 //   mem_fun1_t<S,T,A>
 //   mem_fun1_t<S,T,A>
 //   mem_fun(S (T::*f)(A));
 //   mem_fun(S (T::*f)(A));
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_ref_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // mem_fun1_ref_t
 // mem_fun1_ref_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun1_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // mem_fun1_t
 // mem_fun1_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T>
 // template<Returnable S, ClassType T>
 //   mem_fun_ref_t<S,T>
 //   mem_fun_ref_t<S,T>
 //   mem_fun_ref(S (T::*f)());
 //   mem_fun_ref(S (T::*f)());
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref1.cxx1z.fail.cpp

@@ -12,7 +12,7 @@
 // template<Returnable S, ClassType T, CopyConstructible A>
 // template<Returnable S, ClassType T, CopyConstructible A>
 //   mem_fun1_ref_t<S,T,A>
 //   mem_fun1_ref_t<S,T,A>
 //   mem_fun_ref(S (T::*f)(A));
 //   mem_fun_ref(S (T::*f)(A));
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_ref_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // mem_fun_ref_t
 // mem_fun_ref_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>

+ 1 - 1
test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun_t.cxx1z.fail.cpp

@@ -10,7 +10,7 @@
 // <functional>
 // <functional>
 
 
 // mem_fun_t
 // mem_fun_t
-// Removed in c++1z
+// Removed in c++17
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 // UNSUPPORTED: c++98, c++03, c++11, c++14
 
 
 #include <functional>
 #include <functional>