Commit aaae096a by Jonathan Wakely Committed by Jonathan Wakely

70564 fix newly-added tests for not_fn

	PR libstdc++/70564
	* testsuite/20_util/not_fn/1.cc: Fix test.
	* testsuite/experimental/functional/not_fn.cc: Likewise.

From-SVN: r240784
parent 67ef83c6
2016-10-05 Jonathan Wakely <jwakely@redhat.com> 2016-10-05 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/70564
* testsuite/20_util/not_fn/1.cc: Fix test.
* testsuite/experimental/functional/not_fn.cc: Likewise.
PR libstdc++/70101 PR libstdc++/70101
* include/bits/stl_queue.h (priority_queue): Fix allocator-extended * include/bits/stl_queue.h (priority_queue): Fix allocator-extended
constructors. constructors.
......
...@@ -87,7 +87,8 @@ test04() ...@@ -87,7 +87,8 @@ test04()
void void
test05() test05()
{ {
auto nf{ std::not_fn([] { return false; }) }; auto nf = std::not_fn([] { return false; });
auto copy(nf); // PR libstdc++/70564
} }
int int
......
...@@ -87,7 +87,8 @@ test04() ...@@ -87,7 +87,8 @@ test04()
void void
test05() test05()
{ {
auto nf{ not_fn([] { return false; }) }; auto nf = std::experimental::not_fn([] { return false; });
auto copy(nf); // PR libstdc++/70564
} }
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment