13
0

Remove unused PBD::sys::exists function

git-svn-id: svn://localhost/ardour2/branches/3.0@12884 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2012-06-23 05:09:04 +00:00
parent bc205191bf
commit f558a8c917
2 changed files with 0 additions and 9 deletions

View File

@ -63,12 +63,6 @@ path::operator/=(const char* rhs)
return *this;
}
bool
exists (const path & p)
{
return Glib::file_test (p.to_string(), Glib::FILE_TEST_EXISTS);
}
bool
is_directory (const path & p)
{

View File

@ -103,9 +103,6 @@ public:
inline path operator/ (const path& lhs, const path& rhs)
{ return path(lhs) /= rhs; }
/// @return true if path at p exists
bool exists(const path & p);
/// @return true if path at p is a directory.
bool is_directory(const path & p);