Skip to content

Commit

Permalink
Missing inline keyword added
Browse files Browse the repository at this point in the history
  • Loading branch information
chrberger authored Feb 22, 2018
1 parent 550582e commit cc93514
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stringtoolbox.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ inline std::string replaceAll(const std::string &str,
/**
* @return std::vector<std:string> where the given string is split along delimiter.
*/
std::vector<std::string> split(const std::string &str,
inline std::vector<std::string> split(const std::string &str,
const char &delimiter) noexcept {
std::vector<std::string> retVal{};
std::string::size_type prev{0};
Expand Down

0 comments on commit cc93514

Please sign in to comment.