Revert "restore join_string() symbols in library"
authorThomas Jarosch <thomas.jarosch@intra2net.com>
Wed, 15 Aug 2018 15:14:58 +0000 (17:14 +0200)
committerThomas Jarosch <thomas.jarosch@intra2net.com>
Wed, 15 Aug 2018 15:14:58 +0000 (17:14 +0200)
We bump the SOVERSION of the library, so no compat functions needed anymore.

This reverts commit f3b61bd6816546a39a072a5b8be56d78cf775683.

src/stringfunc.cpp
src/stringfunc.hxx

index bacccb0..d611abf 100644 (file)
@@ -454,13 +454,7 @@ std::string join_string (
    return result;
 }
 
-std::string
-join_string (const std::list<std::string> &l, const std::string &d)
-{ return join_string<std::list<std::string> >(l, d); }
 
-std::string
-join_string (const std::vector<std::string> &l, const std::string &d)
-{ return join_string<std::vector<std::string> >(l, d); }
 
 /*
 ** conversions
index be1c4a8..d945526 100644 (file)
@@ -179,15 +179,6 @@ std::string join_string(
 );
 
 /*
- * provide instantiation wrappers for ABI compatibility
- */
-std::string join_string (const std::list<std::string> &l,
-                         const std::string &d = "\n");
-
-std::string join_string (const std::vector<std::string> &l,
-                         const std::string &d = "\n");
-
-/*
 ** conversions:
 */