neighbor/smbclient: remove unused attribute "alive"

This commit is contained in:
Max Kellermann 2019-04-16 20:04:53 +02:00
parent 38d0f02e83
commit 8b9df85daa

View File

@ -39,11 +39,10 @@ class SmbclientNeighborExplorer final : public NeighborExplorer {
struct Server {
std::string name, comment;
bool alive;
Server(std::string &&_name, std::string &&_comment)
:name(std::move(_name)), comment(std::move(_comment)),
alive(true) {}
:name(std::move(_name)),
comment(std::move(_comment)) {}
Server(const Server &) = delete;
gcc_pure