From 62e116340ea785bdd24d338c2a6deaf1ecf9b51a Mon Sep 17 00:00:00 2001 From: Ralph Sennhauser Date: Thu, 18 Jun 2026 17:45:50 +0200 Subject: [PATCH] Remove POSIX rename wrapper Unused by now, use `` instead. Signed-off-by: Ralph Sennhauser --- source/lib/sysdep/os/unix/ufilesystem.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/lib/sysdep/os/unix/ufilesystem.cpp b/source/lib/sysdep/os/unix/ufilesystem.cpp index 612e6fb215..d0cd586296 100644 --- a/source/lib/sysdep/os/unix/ufilesystem.cpp +++ b/source/lib/sysdep/os/unix/ufilesystem.cpp @@ -92,8 +92,3 @@ int wclose(int fd) { return close(fd); } - -int wrename(const OsPath& pathnameOld, const OsPath& pathnameNew) -{ - return rename(OsString(pathnameOld).c_str(), OsString(pathnameNew).c_str()); -}