mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
add missing override and explicit specifiers in common (#5527)
This commit is contained in:
parent
b911ea6e28
commit
aee68f8b00
8 changed files with 11 additions and 11 deletions
|
|
@ -26,14 +26,14 @@ protected:
|
|||
Server *server;
|
||||
|
||||
public:
|
||||
Server_AbstractUserInterface(Server *_server) : server(_server)
|
||||
explicit Server_AbstractUserInterface(Server *_server) : server(_server)
|
||||
{
|
||||
}
|
||||
Server_AbstractUserInterface(Server *_server, const ServerInfo_User_Container &other)
|
||||
: ServerInfo_User_Container(other), server(_server)
|
||||
{
|
||||
}
|
||||
virtual ~Server_AbstractUserInterface()
|
||||
~Server_AbstractUserInterface() override
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue