From bad829509e43479a4c06d4f7cc36e37246b7b2ed Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 2 Apr 2020 17:10:27 +0200 Subject: [PATCH] test/ShutdownHandler: add `inline` to work around Windows linker problems --- test/ShutdownHandler.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/ShutdownHandler.hxx b/test/ShutdownHandler.hxx index 2283225d2..58ae74790 100644 --- a/test/ShutdownHandler.hxx +++ b/test/ShutdownHandler.hxx @@ -29,8 +29,8 @@ public: }; #ifdef _WIN32 -ShutdownHandler::ShutdownHandler(EventLoop &loop) {} -ShutdownHandler::~ShutdownHandler() {} +inline ShutdownHandler::ShutdownHandler(EventLoop &) {} +inline ShutdownHandler::~ShutdownHandler() {} #endif #endif