Change 'typedef' constructions to type aliases

This commit is contained in:
knowledge4igor 2017-09-05 01:32:21 +03:00
commit 3ab6cd8a39
8 changed files with 11 additions and 11 deletions

View file

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