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:
Richard Hodges
2020-06-02 19:22:37 +02:00
parent cba83c0b42
commit 62b55e6d2d
2 changed files with 4 additions and 3 deletions

View File

@ -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.

View File

@ -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,