utility: visual studio 2012 compatibility
* removed default template parameters for template functions.
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
|
||||
namespace utility
|
||||
{
|
||||
template<typename ContainerType = std::vector<std::string>>
|
||||
template<typename ContainerType>
|
||||
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);
|
||||
|
||||
std::string substrAfter(const std::string& str, char delimiter);
|
||||
|
||||
Reference in New Issue
Block a user