Skip to content
Snippets Groups Projects
Commit 936157e4 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add changes caused by calling clang-tidy in downstream projects

parent 480ff021
No related branches found
No related tags found
No related merge requests found
......@@ -29,15 +29,18 @@
namespace armarx
{
class DebugDrawerTest :
virtual public Component
{
public:
// inherited from Component
virtual std::string getDefaultName() const { return "DebugDrawerTest"; }
virtual void onInitComponent();
virtual void onConnectComponent();
virtual public Component
{
public:
// inherited from Component
std::string getDefaultName() const override
{
return "DebugDrawerTest";
}
void onInitComponent() override;
void onConnectComponent() override;
private:
private:
DebugDrawerInterfacePrx prxDD;
};
......
......@@ -30,7 +30,7 @@ namespace armarx
class DebugDrawerTestApp :
virtual public armarx::Application
{
void setup(const ManagedIceObjectRegistryInterfacePtr& registry, Ice::PropertiesPtr properties)
void setup(const ManagedIceObjectRegistryInterfacePtr& registry, Ice::PropertiesPtr properties) override
{
registry->addObject(Component::create<DebugDrawerTest>(properties));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment