BTW, any plan to sign your releases as described here ?
afs/sftp.cpp:1062:60: error: expected ')' before '}' token
1062 | const std::string_view sftpItemName{(buf.data(), rc};
| ~ ^
| )
--- a/FreeFileSync/Source/afs/sftp.cpp
+++ b/FreeFileSync/Source/afs/sftp.cpp
@@ -1059,7 +1059,7 @@
if (rc == 0) //no more items
return output;
- const std::string_view sftpItemName{(buf.data(), rc};
+ const std::string_view sftpItemName{buf.data(), rc};
if (sftpItemName == "." || sftpItemName == "..") //check needed for SFTP, too!
continue;