diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-04-23 19:47:38 -0700 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2021-05-26 13:05:41 +0200 |
commit | 9438348faaf848f011470760d5a07dcb5e762720 (patch) | |
tree | e7d18c0f98cf9f5345cee0577e0f1e432155afb8 /utils/rds-ctl/rds-ctl.cpp | |
parent | dee1ba88a3e44665a5da822d5408708b150dcf51 (diff) |
mass constexpr conversions
Use constexpr instead of const, ensuring these are all initialized
at compile time.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Diffstat (limited to 'utils/rds-ctl/rds-ctl.cpp')
-rw-r--r-- | utils/rds-ctl/rds-ctl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rds-ctl/rds-ctl.cpp b/utils/rds-ctl/rds-ctl.cpp index 8161aa45..80a9396a 100644 --- a/utils/rds-ctl/rds-ctl.cpp +++ b/utils/rds-ctl/rds-ctl.cpp @@ -382,7 +382,7 @@ static void parse_freq_seek(char *optarg, struct v4l2_hw_freq_seek &seek) char *subs = optarg; while (*subs != '\0') { - static const char *const subopts[] = { + static constexpr const char *subopts[] = { "dir", "wrap", "spacing", |