summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-07-14 11:05:07 +0200
committerJean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com>2021-07-14 15:15:32 +0200
commit35e23837fab8e7837254db32e6a76ddbe4453189 (patch)
tree53b2709b820f06895ae30d490e9d8dc034f78ff3 /src
parenteb9a539938c38b53f87c253884b2d94c7466b2d4 (diff)
ipa: raspberrypi: Remove unused MetadataPtr
The Metadata class defines a shared_ptr named MetadataPtr. It is not used anywhere in the source code, so remove it. Signed-off-by: Jean-Michel Hautbois <jeanmichel.hautbois@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
Diffstat (limited to 'src')
-rw-r--r--src/ipa/raspberrypi/controller/metadata.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ipa/raspberrypi/controller/metadata.hpp b/src/ipa/raspberrypi/controller/metadata.hpp
index fd6aac88..51e576cf 100644
--- a/src/ipa/raspberrypi/controller/metadata.hpp
+++ b/src/ipa/raspberrypi/controller/metadata.hpp
@@ -10,7 +10,6 @@
#include <any>
#include <map>
-#include <memory>
#include <mutex>
#include <string>
@@ -108,6 +107,4 @@ private:
std::map<std::string, std::any> data_;
};
-typedef std::shared_ptr<Metadata> MetadataPtr;
-
} // namespace RPiController