mirror of
https://github.com/boostorg/beast.git
synced 2025-07-31 13:27:33 +02:00
@ -1,6 +1,7 @@
|
|||||||
Version 169:
|
Version 169:
|
||||||
|
|
||||||
* Use buffers_to_string in tests
|
* Use buffers_to_string in tests
|
||||||
|
* Use boost::void_t
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -59,8 +59,10 @@ max_alignof()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// (since C++17)
|
// (since C++17)
|
||||||
template<class... Ts> struct make_void { using type = void; };
|
template<class... Ts>
|
||||||
template<class... Ts> using void_t = typename make_void<Ts...>::type;
|
using make_void = boost::make_void<Ts...>;
|
||||||
|
template<class... Ts>
|
||||||
|
using void_t = boost::void_t<Ts...>;
|
||||||
|
|
||||||
// (since C++11) missing from g++4.8
|
// (since C++11) missing from g++4.8
|
||||||
template<std::size_t Len, class... Ts>
|
template<std::size_t Len, class... Ts>
|
||||||
|
Reference in New Issue
Block a user