utility: visual studio 2012 compatibility

* removed default template parameters for template functions.
This commit is contained in:
malte_langkabel
2014-08-01 16:26:02 +02:00
parent 8950d679e1
commit 9ea28ed64a
+2 -2
View File
@@ -6,10 +6,10 @@
namespace utility namespace utility
{ {
template<typename ContainerType = std::vector<std::string>> template<typename ContainerType>
ContainerType split(const std::string& str, char delimiter); ContainerType split(const std::string& str, char delimiter);
template<typename ContainerType = std::vector<std::string>> template<typename ContainerType>
ContainerType split(const std::string& str, const std::string& delimiter); ContainerType split(const std::string& str, const std::string& delimiter);
std::string substrAfter(const std::string& str, char delimiter); std::string substrAfter(const std::string& str, char delimiter);