libcamera: Remove unneeded semicolons
Comply with the coding style by removing lots of unneeded semicolons. Fix a few other coding style violations on the lines touched by those fixes. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
@@ -36,7 +36,7 @@ class IPAProxyFactory
|
||||
{
|
||||
public:
|
||||
IPAProxyFactory(const char *name);
|
||||
virtual ~IPAProxyFactory(){};
|
||||
virtual ~IPAProxyFactory() {}
|
||||
|
||||
virtual std::unique_ptr<IPAProxy> create(IPAModule *ipam) = 0;
|
||||
|
||||
|
||||
@@ -111,7 +111,7 @@ class PipelineHandlerFactory
|
||||
{
|
||||
public:
|
||||
PipelineHandlerFactory(const char *name);
|
||||
virtual ~PipelineHandlerFactory() { };
|
||||
virtual ~PipelineHandlerFactory() {}
|
||||
|
||||
std::shared_ptr<PipelineHandler> create(CameraManager *manager);
|
||||
|
||||
|
||||
@@ -161,4 +161,4 @@ void InvokeMessage::invoke()
|
||||
* \brief The packed method invocation arguments
|
||||
*/
|
||||
|
||||
}; /* namespace libcamera */
|
||||
} /* namespace libcamera */
|
||||
|
||||
@@ -223,4 +223,4 @@ void Object::disconnect(SignalBase *signal)
|
||||
}
|
||||
}
|
||||
|
||||
}; /* namespace libcamera */
|
||||
} /* namespace libcamera */
|
||||
|
||||
@@ -135,7 +135,7 @@ PipelineHandler::~PipelineHandler()
|
||||
{
|
||||
for (std::shared_ptr<MediaDevice> media : mediaDevices_)
|
||||
media->release();
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* \fn PipelineHandler::match(DeviceEnumerator *enumerator)
|
||||
|
||||
@@ -92,4 +92,4 @@ void IPAProxyLinux::readyRead(IPCUnixSocket *ipc)
|
||||
|
||||
REGISTER_IPA_PROXY(IPAProxyLinux)
|
||||
|
||||
}; /* namespace libcamera */
|
||||
} /* namespace libcamera */
|
||||
|
||||
@@ -495,4 +495,4 @@ void Thread::moveObject(Object *object, ThreadData *currentData,
|
||||
moveObject(child, currentData, targetData);
|
||||
}
|
||||
|
||||
}; /* namespace libcamera */
|
||||
} /* namespace libcamera */
|
||||
|
||||
Reference in New Issue
Block a user