From 9126ed67acf17bb2009430cb6de25b2ffd783d8e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 18 Aug 2022 01:18:34 -0400 Subject: Make empty methods and trivial constructors noexcept --- tests/TestClient.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/TestClient.hpp b/tests/TestClient.hpp index da749660..f282ee6d 100644 --- a/tests/TestClient.hpp +++ b/tests/TestClient.hpp @@ -32,7 +32,7 @@ namespace ingen { class TestClient : public Interface { public: - explicit TestClient(Log& log) : _log(log) {} + explicit TestClient(Log& log) noexcept : _log(log) {} ~TestClient() override = default; -- cgit v1.2.1