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

@ -551,7 +551,7 @@ namespace SimpleWeb {
template <class socket_type>
class Server : public ServerBase<socket_type> {};
typedef asio::ip::tcp::socket HTTP;
using HTTP = asio::ip::tcp::socket;
template <>
class Server<HTTP> : public ServerBase<HTTP> {