Change 'typedef' constructions to type aliases
This commit is contained in:
parent
a3d70bbcb5
commit
3ab6cd8a39
8 changed files with 11 additions and 11 deletions
|
|
@ -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> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue