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:
Itms
2024-08-29 09:12:05 +02:00
committed by Nicolas Auvray
parent ad3537c414
commit b2ab747c8a
+1 -1
View File
@@ -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;