mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 21:07:26 +02:00
File is not copy-constructible
This commit is contained in:
@ -4,6 +4,7 @@ Version 81:
|
|||||||
* better is_final on empty_base_optimization
|
* better is_final on empty_base_optimization
|
||||||
* Suppress incorrect GCC warning
|
* Suppress incorrect GCC warning
|
||||||
* multi_buffer ctor is explicit
|
* multi_buffer ctor is explicit
|
||||||
|
* File is not copy-constructible
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
|
||||||
|
BOOST_STATIC_ASSERT(! std::is_copy_constructible<file_posix>::value);
|
||||||
|
|
||||||
class file_posix_test
|
class file_posix_test
|
||||||
: public beast::unit_test::suite
|
: public beast::unit_test::suite
|
||||||
{
|
{
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
|
||||||
|
BOOST_STATIC_ASSERT(! std::is_copy_constructible<file_stdio>::value);
|
||||||
|
|
||||||
class file_stdio_test
|
class file_stdio_test
|
||||||
: public beast::unit_test::suite
|
: public beast::unit_test::suite
|
||||||
{
|
{
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
|
||||||
|
BOOST_STATIC_ASSERT(! std::is_copy_constructible<file_win32>::value);
|
||||||
|
|
||||||
class file_win32_test
|
class file_win32_test
|
||||||
: public beast::unit_test::suite
|
: public beast::unit_test::suite
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user