From f93277d2713673527393b0a6bd625cc311028484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=CC=8Cubomi=CC=81r=20Carik?= Date: Wed, 20 Dec 2017 04:21:59 +0100 Subject: [PATCH] Solve compiler warning in tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ľubomír Carik --- tests/errors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/errors.cpp b/tests/errors.cpp index 83af2051..c8281d63 100644 --- a/tests/errors.cpp +++ b/tests/errors.cpp @@ -15,7 +15,7 @@ class failing_sink: public spdlog::sinks::sink throw std::runtime_error("some error happened during log"); } - void flush() + void flush() override {} };