libcamera: Remove space between empty curly brackets

Remove spaces between empty curly brackets (replacing { } with {}) to
comply with the coding style. Fix one other coding style violation on
the lines touched by those fixes.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2019-11-04 18:56:45 +02:00
parent d312d0ba10
commit 918bfb3c3d
5 changed files with 14 additions and 12 deletions

View file

@ -27,8 +27,10 @@ public:
protected:
friend class MediaDevice;
MediaObject(MediaDevice *dev, unsigned int id) :
dev_(dev), id_(id) { }
MediaObject(MediaDevice *dev, unsigned int id)
: dev_(dev), id_(id)
{
}
virtual ~MediaObject() {}
MediaDevice *dev_;