summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-12-10 00:51:36 +0100
committerCarl Hetherington <cth@carlh.net>2022-12-10 00:51:36 +0100
commit11afb1f4bb9c8dd2e366ed216dd324d197d18b9a (patch)
tree0ff6290f731ddaa5c6f3ceb9138b7577820f8b24
parentda38c8a0156808595be0aae1b1490069a663fb78 (diff)
Remove unused methods.
-rw-r--r--src/lib/util.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/lib/util.h b/src/lib/util.h
index 38accb4e3..ebd9295e6 100644
--- a/src/lib/util.h
+++ b/src/lib/util.h
@@ -104,26 +104,4 @@ extern void capture_asdcp_logs ();
extern std::string error_details(boost::system::error_code ec);
extern bool contains_assetmap(boost::filesystem::path dir);
-template <class T>
-std::list<T>
-vector_to_list (std::vector<T> v)
-{
- std::list<T> l;
- for (auto& i: v) {
- l.push_back (i);
- }
- return l;
-}
-
-template <class T>
-std::vector<T>
-list_to_vector (std::list<T> v)
-{
- std::vector<T> l;
- for (auto& i: v) {
- l.push_back (i);
- }
- return l;
-}
-
#endif