mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-21 20:06:40 +00:00
Mark class with final dtor as final in tests
This fixes -Wfinal-dtor-non-final-class with FreeBSD's clang17.
This commit is contained in:
@@ -28,7 +28,7 @@ namespace
|
||||
{
|
||||
constexpr const char* MESSAGECONTENT{"Some example message content"};
|
||||
|
||||
class MessageQueues : public INetSession
|
||||
class MessageQueues final : public INetSession
|
||||
{
|
||||
public:
|
||||
~MessageQueues() final = default;
|
||||
|
||||
Reference in New Issue
Block a user