diff options
author | Max Kellermann <max@musicpd.org> | 2017-06-03 21:33:44 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-06-04 12:46:48 +0200 |
commit | a057b4f6d88f7bfc1d9846e14de5617a4c281c0d (patch) | |
tree | 88c49e29042c500104827ac3d6e64bd447e1b4bf /src/AudioFormat.hxx | |
parent | 62b03cfddf74c25d0b8187ce5e56d31ef49667b7 (diff) |
*: add lost of "noexcept" specifications
Diffstat (limited to 'src/AudioFormat.hxx')
-rw-r--r-- | src/AudioFormat.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AudioFormat.hxx b/src/AudioFormat.hxx index 04c682b54..77e710f55 100644 --- a/src/AudioFormat.hxx +++ b/src/AudioFormat.hxx @@ -127,7 +127,7 @@ struct AudioFormat { void ApplyMask(AudioFormat mask) noexcept; gcc_pure - AudioFormat WithMask(AudioFormat mask) const { + AudioFormat WithMask(AudioFormat mask) const noexcept { AudioFormat result = *this; result.ApplyMask(mask); return result; |