mirror of
https://github.com/Kistler-Group/sdbus-cpp.git
synced 2026-04-18 23:58:38 +02:00
fix non-virtual-dtor warning
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
|
||||
class PlanetProxy : public sdbus::ProxyInterfaces< org::sdbuscpp::ExampleManager::Planet1_proxy >
|
||||
class PlanetProxy final : public sdbus::ProxyInterfaces< org::sdbuscpp::ExampleManager::Planet1_proxy >
|
||||
{
|
||||
public:
|
||||
PlanetProxy(sdbus::IConnection& connection, std::string destination, std::string path)
|
||||
@@ -29,7 +29,7 @@ public:
|
||||
}
|
||||
};
|
||||
|
||||
class ManagerProxy : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
||||
class ManagerProxy final : public sdbus::ProxyInterfaces< sdbus::ObjectManager_proxy >
|
||||
{
|
||||
public:
|
||||
ManagerProxy(sdbus::IConnection& connection, const std::string& destination, std::string path)
|
||||
|
||||
Reference in New Issue
Block a user