Fix incorrect return type

This commit is contained in:
baldurk
2023-05-19 10:58:29 +01:00
parent 203fc8382a
commit 771aa8e769
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ rdcstr strip_extension(const rdcstr &path)
return path.substr(0, offs);
}
rdcstr strip_nonbasic(rdcstr &str)
void strip_nonbasic(rdcstr &str)
{
for(char &c : str)
{