Change 'typedef' constructions to type aliases
This commit is contained in:
parent
a3d70bbcb5
commit
3ab6cd8a39
8 changed files with 11 additions and 11 deletions
|
|
@ -594,7 +594,7 @@ namespace SimpleWeb {
|
|||
template <class socket_type>
|
||||
class Client : public ClientBase<socket_type> {};
|
||||
|
||||
typedef asio::ip::tcp::socket HTTP;
|
||||
using HTTP = asio::ip::tcp::socket;
|
||||
|
||||
template <>
|
||||
class Client<HTTP> : public ClientBase<HTTP> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue