summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-04-02 17:10:27 +0200
committerMax Kellermann <max@musicpd.org>2020-04-02 17:16:05 +0200
commitbad829509e43479a4c06d4f7cc36e37246b7b2ed (patch)
tree1570860c0e8aa0cbb6e8e6c7c562aeb08d095b8b /test
parent9c66b0414a02ff03fcf3c122dbeb83d8017ff1b8 (diff)
test/ShutdownHandler: add `inline` to work around Windows linker problems
Diffstat (limited to 'test')
-rw-r--r--test/ShutdownHandler.hxx4
1 files 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