*: add "noexcept" to many, many function prototypes

See commit 71f0ed8b74
This commit is contained in:
Max Kellermann
2017-05-15 23:05:45 +02:00
parent cde5a07981
commit c5996c0593
11 changed files with 20 additions and 20 deletions

View File

@@ -38,7 +38,7 @@ nfs_init(EventLoop &event_loop)
}
void
nfs_finish()
nfs_finish() noexcept
{
assert(in_use > 0);
@@ -49,7 +49,7 @@ nfs_finish()
}
EventLoop &
nfs_get_event_loop()
nfs_get_event_loop() noexcept
{
assert(in_use > 0);

View File

@@ -30,14 +30,14 @@ void
nfs_init(EventLoop &event_loop);
void
nfs_finish();
nfs_finish() noexcept;
/**
* Return the EventLoop that was passed to nfs_init().
*/
gcc_const
EventLoop &
nfs_get_event_loop();
nfs_get_event_loop() noexcept;
gcc_pure
NfsConnection &