summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 10c5678ff..112451f7b 100644
--- a/src/lib/util.h
+++ b/src/lib/util.h
@@ -130,28 +130,6 @@ extern boost::filesystem::path default_font_file ();
extern std::string to_upper (std::string s);
extern void start_of_thread (std::string name);
-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;
-}
-
extern double db_to_linear (double db);
extern double linear_to_db (double linear);