diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-11-04 18:56:45 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-11-18 02:27:48 +0200 |
commit | 918bfb3c3dbaecb2df10fb24da9c68737f4948c1 (patch) | |
tree | 0e26bfcaee4a7250b2f1f83db55d887c43c493bd /test/libtest | |
parent | d312d0ba10f3740d45b50ef8bcfc48e751e694fc (diff) |
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>
Diffstat (limited to 'test/libtest')
-rw-r--r-- | test/libtest/test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libtest/test.h b/test/libtest/test.h index ec08bf97..26d4b94b 100644 --- a/test/libtest/test.h +++ b/test/libtest/test.h @@ -26,7 +26,7 @@ public: protected: virtual int init() { return 0; } virtual int run() = 0; - virtual void cleanup() { } + virtual void cleanup() {} }; #define TEST_REGISTER(klass) \ |