Merge pull request #9933 from Dentomologist/remove_stringutil_buildcompletefilename
StringUtil: Remove unused function BuildCompleteFilename
This commit is contained in:
commit
484279f013
|
@ -342,19 +342,6 @@ std::string PathToFileName(std::string_view path)
|
||||||
return file_name + extension;
|
return file_name + extension;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BuildCompleteFilename(std::string& complete_filename, std::string_view path,
|
|
||||||
std::string_view filename)
|
|
||||||
{
|
|
||||||
complete_filename = path;
|
|
||||||
|
|
||||||
// check for seperator
|
|
||||||
if (DIR_SEP_CHR != *complete_filename.rbegin())
|
|
||||||
complete_filename += DIR_SEP_CHR;
|
|
||||||
|
|
||||||
// add the filename
|
|
||||||
complete_filename += filename;
|
|
||||||
}
|
|
||||||
|
|
||||||
std::vector<std::string> SplitString(const std::string& str, const char delim)
|
std::vector<std::string> SplitString(const std::string& str, const char delim)
|
||||||
{
|
{
|
||||||
std::istringstream iss(str);
|
std::istringstream iss(str);
|
||||||
|
|
|
@ -162,9 +162,6 @@ bool SplitPath(std::string_view full_path, std::string* path, std::string* filen
|
||||||
|
|
||||||
std::string PathToFileName(std::string_view path);
|
std::string PathToFileName(std::string_view path);
|
||||||
|
|
||||||
void BuildCompleteFilename(std::string& complete_filename, std::string_view path,
|
|
||||||
std::string_view filename);
|
|
||||||
|
|
||||||
bool StringBeginsWith(std::string_view str, std::string_view begin);
|
bool StringBeginsWith(std::string_view str, std::string_view begin);
|
||||||
bool StringEndsWith(std::string_view str, std::string_view end);
|
bool StringEndsWith(std::string_view str, std::string_view end);
|
||||||
void StringPopBackIf(std::string* s, char c);
|
void StringPopBackIf(std::string* s, char c);
|
||||||
|
|
Loading…
Reference in New Issue