From 11afb1f4bb9c8dd2e366ed216dd324d197d18b9a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 10 Dec 2022 00:51:36 +0100 Subject: [PATCH] Remove unused methods. --- src/lib/util.h | 22 ---------------------- 1 file changed, 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 -std::list -vector_to_list (std::vector v) -{ - std::list l; - for (auto& i: v) { - l.push_back (i); - } - return l; -} - -template -std::vector -list_to_vector (std::list v) -{ - std::vector l; - for (auto& i: v) { - l.push_back (i); - } - return l; -} - #endif -- 2.30.2