diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-07-07 04:02:07 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-07-22 17:13:28 +0300 |
commit | 668c87732a53560ffbe1ea1c52a880188da11e9f (patch) | |
tree | 6ca46c04272b09b161f18d5f52054f9ffa130228 /src/cam/options.cpp | |
parent | bb682d258517c7ed9c773f184df113e83f26c4f2 (diff) |
cam: options: Drop some OptionValue cast operators
While OptionValue cast operators to int and std::string allow useful
shortcut syntaxes, the cast operators to KeyValueParser::Options and
std::vector<OptionValue> are less useful. A an explicit static_cast call
would be more cumbersome to write than an explicit .toKeyValues() or
toArray(), and implicit cast hide too much of what's going on.
Drop those two cast operators, and replace the only implicit cast
occurrence with .toKeyValues(). While at it, drop the local opts
variable in StreamKeyValueParser::roles() as it isn't used.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/cam/options.cpp')
-rw-r--r-- | src/cam/options.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/cam/options.cpp b/src/cam/options.cpp index 59b26be4..fda6d976 100644 --- a/src/cam/options.cpp +++ b/src/cam/options.cpp @@ -604,26 +604,6 @@ OptionValue::operator std::string() const } /** - * \brief Cast the value to a key-value list - * \return The option value as a KeyValueParser::Options, or an empty list if - * the value type isn't ValueType::ValueKeyValue - */ -OptionValue::operator KeyValueParser::Options() const -{ - return toKeyValues(); -} - -/** - * \brief Cast the value to an array - * \return The option value as a std::vector of OptionValue, or an empty vector - * if the value type isn't ValueType::ValueArray - */ -OptionValue::operator std::vector<OptionValue>() const -{ - return toArray(); -} - -/** * \brief Retrieve the value as an int * \return The option value as an int, or 0 if the value type isn't * ValueType::ValueInteger |