diff options
author | Max Kellermann <max@musicpd.org> | 2019-08-20 20:27:15 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-08-20 20:28:15 +0200 |
commit | 9bff5f9e36a02d40f660d39f52bd9c4b63caa1a5 (patch) | |
tree | 2a1b27e1cdf4198287c085042fef3e9a08198cfc /src/command/AllCommands.hxx | |
parent | 2bf26a2ff8ad65848b051151c40c6a34a600cf2c (diff) |
client/Process, command/all: add `noexcept`
Clarify that those can't throw, preparing for the next commit.
Diffstat (limited to 'src/command/AllCommands.hxx')
-rw-r--r-- | src/command/AllCommands.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/AllCommands.hxx b/src/command/AllCommands.hxx index 3a0220e55..0e685c118 100644 --- a/src/command/AllCommands.hxx +++ b/src/command/AllCommands.hxx @@ -25,9 +25,9 @@ class Client; void -command_init(); +command_init() noexcept; CommandResult -command_process(Client &client, unsigned num, char *line); +command_process(Client &client, unsigned num, char *line) noexcept; #endif |