libcamera: device_enumerator: Fix indentation

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Laurent Pinchart 2018-12-31 09:29:18 +02:00
parent 6b0c2f027a
commit 9f5d6ee69f

View file

@ -45,8 +45,8 @@ private:
};
#define REGISTER_PIPELINE_HANDLER(handler) \
class handler##Factory : public PipelineHandlerFactory { \
public: \
class handler##Factory : public PipelineHandlerFactory { \
public: \
handler##Factory() \
{ \
PipelineHandlerFactory::registerType(#handler, this); \
@ -54,8 +54,8 @@ private:
virtual PipelineHandler *create() { \
return new handler(); \
} \
}; \
static handler##Factory global_##handler##Factory;
}; \
static handler##Factory global_##handler##Factory;
} /* namespace libcamera */