mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 12:57:31 +02:00
committed by
Vinnie Falco
parent
5eaa2be85e
commit
a7b78ac1bc
@ -1,6 +1,7 @@
|
|||||||
Version 163:
|
Version 163:
|
||||||
|
|
||||||
* Tidy up calls to post()
|
* Tidy up calls to post()
|
||||||
|
* Fix narrowing warnings
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -98,7 +98,7 @@ prepare_key(prepared_key& prepared, std::uint32_t key)
|
|||||||
|
|
||||||
template<std::size_t N>
|
template<std::size_t N>
|
||||||
void
|
void
|
||||||
rol(std::array<unsigned char, N>& v, unsigned n)
|
rol(std::array<unsigned char, N>& v, std::size_t n)
|
||||||
{
|
{
|
||||||
auto v0 = v;
|
auto v0 = v;
|
||||||
for(std::size_t i = 0; i < v.size(); ++i )
|
for(std::size_t i = 0; i < v.size(); ++i )
|
||||||
|
Reference in New Issue
Block a user