Remove unused argument for file::path_attributes

This commit is contained in:
Allan Odgaard
2013-07-29 10:02:22 +02:00
parent 5a7bd6c914
commit 1ff981ea77
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
namespace file
{
std::string path_attributes (std::string const& path, std::string const& dir)
std::string path_attributes (std::string const& path)
{
std::vector<std::string> res;
if(path != NULL_STR)

View File

@@ -5,7 +5,7 @@
namespace file
{
PUBLIC std::string path_attributes (std::string const& path, std::string const& dir = NULL_STR);
PUBLIC std::string path_attributes (std::string const& path);
} /* file */