test/ShutdownHandler: add `inline` to work around Windows linker problems

This commit is contained in:
Max Kellermann 2020-04-02 17:10:27 +02:00
parent 9c66b0414a
commit bad829509e
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ public:
};
#ifdef _WIN32
ShutdownHandler::ShutdownHandler(EventLoop &loop) {}
ShutdownHandler::~ShutdownHandler() {}
inline ShutdownHandler::ShutdownHandler(EventLoop &) {}
inline ShutdownHandler::~ShutdownHandler() {}
#endif
#endif