forked from boostorg/beast
committed by
Vinnie Falco
parent
5eaa2be85e
commit
a7b78ac1bc
@@ -1,6 +1,7 @@
|
||||
Version 163:
|
||||
|
||||
* 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>
|
||||
void
|
||||
rol(std::array<unsigned char, N>& v, unsigned n)
|
||||
rol(std::array<unsigned char, N>& v, std::size_t n)
|
||||
{
|
||||
auto v0 = v;
|
||||
for(std::size_t i = 0; i < v.size(); ++i )
|
||||
|
Reference in New Issue
Block a user