io.cc: Drop unused variable

This commit is contained in:
Krystine Sherwin 2025-11-04 12:27:31 +13:00
parent 1a80c26bae
commit 336877a353
No known key found for this signature in database
1 changed files with 0 additions and 6 deletions

View File

@ -392,12 +392,6 @@ void append_globbed(std::vector<std::string>& paths, std::string pattern)
copy(globbed.begin(), globbed.end(), back_inserter(paths));
}
#ifdef _WIN32
const char* const OS_PATH_SEP = "/\\";
#else
const char* const OS_PATH_SEP = "/";
#endif
std::string name_from_file_path(std::string path) {
return std::filesystem::path(path).filename().string();
}