mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Remove zlib error invalid_code_lenths
(sic) (API Change):
API Changes: The error code enum `invalid_code_lenths` was a synonym of `invalid_code_lengths`. Affected programs should be modified to use `invalid_code_lengths`. refs #1934
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
* 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)
|
||||
* Remove `mutable_data_type` from Dyanmic Buffers (API Change)
|
||||
@ -9,6 +10,9 @@
|
||||
|
||||
API Changes:
|
||||
|
||||
* The error code enum `invalid_code_lenths` was a synonym of `invalid_code_lengths`.
|
||||
Affected programs should be modified to use `invalid_code_lengths`.
|
||||
|
||||
* The `core/type_traits.hpp` public header has been removed and along with it
|
||||
the type trait `is_completion_handler`. Beast uses the CompletionHandler correctness
|
||||
checks provided by Asio. In a c++20 environment, these convert to concept checks.
|
||||
|
@ -107,9 +107,6 @@ enum class error
|
||||
|
||||
/// Invalid code lengths
|
||||
invalid_code_lengths,
|
||||
#ifdef BOOST_BEAST_ALLOW_DEPRECATED
|
||||
invalid_code_lenths = invalid_code_lengths,
|
||||
#endif
|
||||
|
||||
/// Invalid bit length repeat
|
||||
invalid_bit_length_repeat,
|
||||
|
Reference in New Issue
Block a user