neighbor/smbclient: remove unused attribute "alive"
This commit is contained in:
parent
38d0f02e83
commit
8b9df85daa
@ -39,11 +39,10 @@ class SmbclientNeighborExplorer final : public NeighborExplorer {
|
|||||||
struct Server {
|
struct Server {
|
||||||
std::string name, comment;
|
std::string name, comment;
|
||||||
|
|
||||||
bool alive;
|
|
||||||
|
|
||||||
Server(std::string &&_name, std::string &&_comment)
|
Server(std::string &&_name, std::string &&_comment)
|
||||||
:name(std::move(_name)), comment(std::move(_comment)),
|
:name(std::move(_name)),
|
||||||
alive(true) {}
|
comment(std::move(_comment)) {}
|
||||||
|
|
||||||
Server(const Server &) = delete;
|
Server(const Server &) = delete;
|
||||||
|
|
||||||
gcc_pure
|
gcc_pure
|
||||||
|
Loading…
Reference in New Issue
Block a user