diff --git a/Source/cmSourceGroupCommand.cxx b/Source/cmSourceGroupCommand.cxx index 32b652f9b5..ba74b15be4 100644 --- a/Source/cmSourceGroupCommand.cxx +++ b/Source/cmSourceGroupCommand.cxx @@ -17,8 +17,7 @@ #include "cmSourceGroupCommand.h" inline std::vector tokenize(const std::string& str, - const std::string& sep, - bool skipEmptyTokens) + const std::string& sep) { std::vector tokens; if(str.size() == 0) @@ -64,7 +63,7 @@ bool cmSourceGroupCommand::InitialPass(std::vector const& args) delimiter = m_Makefile->GetDefinition("SOURCE_GROUP_DELIMITER"); } - std::vector folders = tokenize(args[0], delimiter, true); + std::vector folders = tokenize(args[0], delimiter); const char *parent = NULL; cmSourceGroup* sg = NULL;