diff --git a/src/backend/plugin/plugin.cpp b/src/backend/plugin/plugin.cpp index 1530e745..eb17fadc 100644 --- a/src/backend/plugin/plugin.cpp +++ b/src/backend/plugin/plugin.cpp @@ -82,7 +82,7 @@ Plugin::Plugin(const Game& game, const std::string& name, const bool headerOnly) text = text.substr(pos1, pos2 - pos1); std::vector bashTags; - boost::split(bashTags, text, boost::is_any_of(",")); + boost::split(bashTags, text, [](char c) { return c == ','; }); for (auto &tag : bashTags) { boost::trim(tag);