db/update/ExcludeList: add noexcept
This commit is contained in:
parent
32f865f146
commit
45403b44de
@ -44,10 +44,10 @@ class ExcludeList {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ExcludeList()
|
ExcludeList() noexcept
|
||||||
:parent(nullptr) {}
|
:parent(nullptr) {}
|
||||||
|
|
||||||
ExcludeList(const ExcludeList &_parent)
|
ExcludeList(const ExcludeList &_parent) noexcept
|
||||||
:parent(&_parent) {}
|
:parent(&_parent) {}
|
||||||
|
|
||||||
gcc_pure
|
gcc_pure
|
||||||
@ -62,6 +62,8 @@ public:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads and parses a .mpdignore file.
|
* Loads and parses a .mpdignore file.
|
||||||
|
*
|
||||||
|
* Throws on I/O error.
|
||||||
*/
|
*/
|
||||||
bool Load(InputStreamPtr is);
|
bool Load(InputStreamPtr is);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user