Skip to content

Commit

Permalink
Fix SharedUtil::Explode declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
Lpsd committed Oct 15, 2023
1 parent 40865c7 commit 0f93dc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shared/sdk/SharedUtil.Misc.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ namespace SharedUtil
return false;
}

std::vector<std::string> SharedUtil::Explode(std::string const& s, char delim)
std::vector<std::string> Explode(std::string const& s, char delim)
{
std::vector<std::string> result;
std::istringstream iss(s);
Expand Down

0 comments on commit 0f93dc5

Please sign in to comment.