Remove buffers_adapter.hpp (API Change):

API Changes:

The file `core/buffers_adapter.hpp` has been removed along with the deprecated
alias typename `buffers_adapter`. Affected programs should use
`core/buffers_adapator.hpp` and the type `buffers_adaptor`.

refs #1934
This commit is contained in:
Richard Hodges
2020-06-02 19:32:04 +02:00
parent 62b55e6d2d
commit 0fa658f644
5 changed files with 5 additions and 60 deletions

View File

@@ -1,3 +1,4 @@
* Remove buffers_adapter.hpp (API Change)
* Remove zlib error `invalid_code_lenths`(sic) (API Change)
* Remove `core/type_traits.hpp` (API Change)
* Remove `reset` function from `flat_static_buffer` (API Change)
@@ -10,6 +11,10 @@
API Changes:
* The file `core/buffers_adapter.hpp` has been removed along with the deprecated
alias typename `buffers_adapter`. Affected programs should use
`core/buffers_adapator.hpp` and the type `buffers_adaptor`.
* The error code enum `invalid_code_lenths` was a synonym of `invalid_code_lengths`.
Affected programs should be modified to use `invalid_code_lengths`.

View File

@@ -1,35 +0,0 @@
//
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/beast
//
#ifndef BOOST_BEAST_BUFFERS_ADAPTER_HPP
#define BOOST_BEAST_BUFFERS_ADAPTER_HPP
#include <boost/beast/core/detail/config.hpp>
#ifdef BOOST_BEAST_ALLOW_DEPRECATED
#include <boost/beast/core/buffers_adaptor.hpp>
namespace boost {
namespace beast {
template<class MutableBufferSequence>
using buffers_adapter = buffers_adaptor<MutableBufferSequence>;
} // beast
} // boost
#else
// The new filename is <boost/beast/core/buffers_adaptor.hpp>
#error The file <boost/beast/core/buffers_adapter.hpp> is deprecated, define BOOST_BEAST_ALLOW_DEPRECATED to disable this error
#endif
#endif

View File

@@ -33,7 +33,6 @@ add_executable (tests-beast-core
bind_handler.cpp
buffer_traits.cpp
buffered_read_stream.cpp
buffers_adapter.cpp
buffers_adaptor.cpp
buffers_cat.cpp
buffers_prefix.cpp

View File

@@ -24,7 +24,6 @@ local SOURCES =
bind_handler.cpp
buffer_traits.cpp
buffered_read_stream.cpp
buffers_adapter.cpp
buffers_adaptor.cpp
buffers_cat.cpp
buffers_prefix.cpp

View File

@@ -1,23 +0,0 @@
//
// Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/boostorg/beast
//
#ifndef BOOST_BEAST_ALLOW_DEPRECATED
#define BOOST_BEAST_ALLOW_DEPRECATED
#endif
// Test that header file is self-contained.
#include <boost/beast/core/buffers_adapter.hpp>
namespace boost {
namespace beast {
BOOST_STATIC_ASSERT(sizeof(buffers_adapter<net::mutable_buffer>) > 0);
} // beast
} // boost