summaryrefslogtreecommitdiffstats
path: root/pstl/test/std/algorithms/alg.nonmodifying
diff options
context:
space:
mode:
Diffstat (limited to 'pstl/test/std/algorithms/alg.nonmodifying')
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp2
-rw-r--r--pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp2
14 files changed, 14 insertions, 14 deletions
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp
index 61cfa31f9c8..d9c983afec4 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/adjacent_find.pass.cpp
@@ -100,7 +100,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp
index cde47515ae2..97e41441ac4 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/all_of.pass.cpp
@@ -100,7 +100,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(8 * sizeof(int32_t));
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp
index c06dc409ced..1430de9b63d 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/any_of.pass.cpp
@@ -86,7 +86,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(8 * sizeof(int32_t));
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp
index f40d59c9b55..7ec77f37604 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/count.pass.cpp
@@ -90,7 +90,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(42, IsEqual<int32_t>(50, OddTag()), [](int32_t j) { return j; });
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp
index 742256abffc..45ec237a4b2 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/equal.pass.cpp
@@ -149,7 +149,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp
index a5c213021fe..d6bcadb7bdd 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/find.pass.cpp
@@ -80,7 +80,7 @@ class Weird
Weird(int32_t val, OddTag) : value(val, OddTag()) {}
};
-int32_t
+int
main()
{
// Note that the "hit" and "miss" functions here avoid overflow issues.
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp
index a24d82a497d..b6a60f0c12e 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/find_end.pass.cpp
@@ -106,7 +106,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(8 * sizeof(int32_t));
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp
index 07df841fd96..7f5a5568117 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/find_first_of.pass.cpp
@@ -98,7 +98,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(std::equal_to<int32_t>());
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp
index 947b0f5e404..5bafbbc5e50 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/find_if.pass.cpp
@@ -89,7 +89,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
#if !_PSTL_ICC_17_TEST_MAC_RELEASE_32_BROKEN
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp
index 88b622a47a1..3aae4a4aaef 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/for_each.pass.cpp
@@ -88,7 +88,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>();
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp
index a7a639bcc39..109ac4b8256 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/mismatch.pass.cpp
@@ -117,7 +117,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp
index de1d651a18c..e84de3cbaf0 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/none_of.pass.cpp
@@ -84,7 +84,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>(8 * sizeof(int32_t));
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp
index c620450e9df..49cf28be30b 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/nth_element.pass.cpp
@@ -156,7 +156,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test_by_type<int32_t>([](int32_t i) { return 10 * i; }, [](int32_t i) { return i + 1; }, std::less<int32_t>());
diff --git a/pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp b/pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp
index e587eb5c374..a42193a4441 100644
--- a/pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp
+++ b/pstl/test/std/algorithms/alg.nonmodifying/search_n.pass.cpp
@@ -92,7 +92,7 @@ struct test_non_const
}
};
-int32_t
+int
main()
{
test<int32_t>();
OpenPOWER on IntegriCloud