lib/alsa: add "noexcept"

This commit is contained in:
Max Kellermann
2017-10-26 08:24:14 +02:00
parent ddabe1a6df
commit 2a6d5583d1
3 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@
static constexpr uint_least32_t
MakeAlsaVersion(uint_least32_t major, uint_least32_t minor,
uint_least32_t subminor)
uint_least32_t subminor) noexcept
{
return (major << 16) | (minor << 8) | subminor;
}