merge with a master again; build ok

This commit is contained in:
bssrdf
2024-02-25 19:30:22 -05:00
14 changed files with 331 additions and 241 deletions

View File

@@ -203,7 +203,7 @@ std::u32string unicode_value_to_utf32(int unicode_value) {
return utf32_string;
}
std::string sd_basename(const std::string& path) {
static std::string sd_basename(const std::string& path) {
size_t pos = path.find_last_of('/');
if (pos != std::string::npos) {
return path.substr(pos + 1);