From 71f0ed8b7499011b53f90998ebfbd3250fd80948 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 8 May 2017 14:44:49 +0200 Subject: *: add "noexcept" to many, many function prototypes This eliminates some overhead, because the compiler doesn't need to consider these functions throwing. --- src/MusicPipe.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/MusicPipe.cxx') diff --git a/src/MusicPipe.cxx b/src/MusicPipe.cxx index c6128ce74..c82faa648 100644 --- a/src/MusicPipe.cxx +++ b/src/MusicPipe.cxx @@ -25,7 +25,7 @@ #ifndef NDEBUG bool -MusicPipe::Contains(const MusicChunk *chunk) const +MusicPipe::Contains(const MusicChunk *chunk) const noexcept { const std::lock_guard protect(mutex); -- cgit v1.2.3