libcamera: yaml_parser: Remove memberNames() function

Now that YamlObject supports iteration, the memberNames() function isn't
useful anymore as it can be implemented using utils::map_keys() if
really needed. Drop it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
Reviewed-by: Han-Lin Chen <hanlinchen@chromium.org>
This commit is contained in:
Laurent Pinchart
2022-05-25 01:58:12 +03:00
parent 12bf404147
commit 9dacead615
3 changed files with 0 additions and 33 deletions
-1
View File
@@ -172,7 +172,6 @@ public:
bool contains(const std::string &key) const;
const YamlObject &operator[](const std::string &key) const;
std::vector<std::string> memberNames() const;
private:
LIBCAMERA_DISABLE_COPY_AND_MOVE(YamlObject)