diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-02-13 00:28:33 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-02-13 13:23:36 +0200 |
commit | 0c0b1e4dbe2b436a60c26cbaa68556988bcbf005 (patch) | |
tree | ff2b8185b38a0555d1bffe60f57c858957fdd73e /src/cam/options.h | |
parent | 5fb0ea016ce7d1347698b67e7e8f90b507495b65 (diff) |
cam: options: Fix coding style issue related to templates
Our coding style doesn't add a space after the template keyword. Fix the
source code accordingly.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Diffstat (limited to 'src/cam/options.h')
-rw-r--r-- | src/cam/options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cam/options.h b/src/cam/options.h index 2d3aa50b..745f4a4a 100644 --- a/src/cam/options.h +++ b/src/cam/options.h @@ -41,7 +41,7 @@ struct Option { const char *typeName() const; }; -template <typename T> +template<typename T> class OptionsBase { public: |