Commit 8c9d69ba by Thomas Rodgers

libstdc++: Mark experimental::net::system_context ctor deleted

           * include/experimental/net/executor (system_context): Mark
           system_context::system_context() = delete.
           * testsuite/experimental/net/executor/1.cc: Add new
           test to check system_context is not default constructible.
parent be0363c8
......@@ -14,6 +14,13 @@
* include/std/version (__cpp_lib_three_way_comparison): Define for
freestanding builds.
2020-04-23 Thomas Rodgers <rodgert@appliantology.com>
* include/experimental/net/executor (system_context): Mark
system_context::system_context() = delete.
* testsuite/experimental/net/executor/1.cc: Add new
test to check system_context is not default constructible.
2020-04-23 Iain Sandoe <iain@sandoe.co.uk>
* include/std/coroutine: Update the inline namespace to __n4861.
......
......@@ -850,7 +850,7 @@ inline namespace v1
// construct / copy / destroy:
system_context() = default;
system_context() = delete;
system_context(const system_context&) = delete;
system_context& operator=(const system_context&) = delete;
......
......@@ -85,9 +85,16 @@ test02()
VERIFY( e == g );
}
void
test03()
{
static_assert( ! std::is_default_constructible<net::system_context>::value, "" );
}
int
main()
{
test01();
test02();
test03();
}
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