13
0

Remove unused function PBD::sys::remove

git-svn-id: svn://localhost/ardour2/branches/3.0@12873 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2012-06-23 05:08:38 +00:00
parent dcc6d27390
commit 8c831bef10
2 changed files with 0 additions and 26 deletions

View File

@ -127,20 +127,6 @@ create_directories(const path & p)
return true;
}
bool
remove(const path & p)
{
if(!exists(p)) return false;
int error = g_unlink (p.to_string().c_str());
if(error == -1)
{
throw filesystem_error(g_strerror(errno), errno);
}
return true;
}
void
rename (const path & from_path, const path & to_path)
{

View File

@ -148,18 +148,6 @@ bool create_directory(const path & p);
*/
bool create_directories(const path & p);
/**
* Attempt to delete the file at path p as if by the glib function
* g_unlink.
*
* @return true if file existed prior to removing it, false if file
* at p did not exist.
*
* @throw filesystem_error if removing the file failed for any other
* reason other than the file did not exist.
*/
bool remove(const path & p);
/**
* Renames from_path to to_path as if by the glib function g_rename.
*/