diff options
author | Max Kellermann <max@musicpd.org> | 2017-05-08 14:44:49 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-05-08 14:44:49 +0200 |
commit | 71f0ed8b7499011b53f90998ebfbd3250fd80948 (patch) | |
tree | e9c2f66fbef231858f46d878864199d46e6ce21c /src/decoder/Bridge.hxx | |
parent | ac2e4e593d407e41db49fdb9ae2da6bc1557f618 (diff) |
*: add "noexcept" to many, many function prototypes
This eliminates some overhead, because the compiler doesn't need to
consider these functions throwing.
Diffstat (limited to 'src/decoder/Bridge.hxx')
-rw-r--r-- | src/decoder/Bridge.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/decoder/Bridge.hxx b/src/decoder/Bridge.hxx index 977f56083..8573d6a7f 100644 --- a/src/decoder/Bridge.hxx +++ b/src/decoder/Bridge.hxx @@ -114,7 +114,7 @@ public: * Caller must lock the #DecoderControl object. */ gcc_pure - bool CheckCancelRead() const; + bool CheckCancelRead() const noexcept; /** * Returns the current chunk the decoder writes to, or allocates a new @@ -122,7 +122,7 @@ public: * * @return the chunk, or NULL if we have received a decoder command */ - MusicChunk *GetChunk(); + MusicChunk *GetChunk() noexcept; /** * Flushes the current chunk. @@ -161,8 +161,8 @@ private: * "virtual" synthesized command, e.g. to seek to the * beginning of the CUE track. */ - DecoderCommand GetVirtualCommand(); - DecoderCommand LockGetVirtualCommand(); + DecoderCommand GetVirtualCommand() noexcept; + DecoderCommand LockGetVirtualCommand() noexcept; /** * Sends a #Tag as-is to the #MusicPipe. Flushes the current |