From 1ff981ea7776adc925cb07be99feea28c7856328 Mon Sep 17 00:00:00 2001 From: Allan Odgaard Date: Mon, 29 Jul 2013 10:02:22 +0200 Subject: [PATCH] Remove unused argument for file::path_attributes --- Frameworks/file/src/path_info.cc | 2 +- Frameworks/file/src/path_info.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Frameworks/file/src/path_info.cc b/Frameworks/file/src/path_info.cc index 23e3d5f1..7cd1eca8 100644 --- a/Frameworks/file/src/path_info.cc +++ b/Frameworks/file/src/path_info.cc @@ -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 res; if(path != NULL_STR) diff --git a/Frameworks/file/src/path_info.h b/Frameworks/file/src/path_info.h index a4728734..f8b22c1b 100644 --- a/Frameworks/file/src/path_info.h +++ b/Frameworks/file/src/path_info.h @@ -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 */