Merge tag 'v0.20.9'

release v0.20.9
This commit is contained in:
Max Kellermann
2017-06-04 12:57:05 +02:00
69 changed files with 240 additions and 232 deletions

View File

@@ -48,12 +48,12 @@ class SmbclientNeighborExplorer final : public NeighborExplorer {
Server(const Server &) = delete;
gcc_pure
bool operator==(const Server &other) const {
bool operator==(const Server &other) const noexcept {
return name == other.name;
}
gcc_pure
NeighborInfo Export() const {
NeighborInfo Export() const noexcept {
return { "smb://" + name + "/", comment };
}
};

View File

@@ -43,12 +43,12 @@ class UpnpNeighborExplorer final
Server(const Server &) = delete;
gcc_pure
bool operator==(const Server &other) const {
bool operator==(const Server &other) const noexcept {
return name == other.name;
}
gcc_pure
NeighborInfo Export() const {
NeighborInfo Export() const noexcept {
return { "smb://" + name + "/", comment };
}
};