summaryrefslogtreecommitdiff
path: root/libs/pbd/filesystem_paths.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
committerCarl Hetherington <carl@carlh.net>2009-05-12 17:03:42 +0000
commit3b89d9eaa03406a5e03648f47734211f09b89d62 (patch)
tree1c8d151bca327d4a5cb7047c8591aa814b9b4ec8 /libs/pbd/filesystem_paths.cc
parent2e5c935990d6ea5cc6e9a5a6de0fd8c52e68657c (diff)
Remove most using declarations from header files.
git-svn-id: svn://localhost/ardour2/branches/3.0@5069 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/filesystem_paths.cc')
-rw-r--r--libs/pbd/filesystem_paths.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/pbd/filesystem_paths.cc b/libs/pbd/filesystem_paths.cc
index a5c3c65c16..7f0ac62d0f 100644
--- a/libs/pbd/filesystem_paths.cc
+++ b/libs/pbd/filesystem_paths.cc
@@ -22,10 +22,10 @@
namespace PBD {
-vector<sys::path>
+std::vector<sys::path>
system_data_directories ()
{
- vector<sys::path> tmp;
+ std::vector<sys::path> tmp;
const char * const * dirs;
dirs = g_get_system_data_dirs ();
@@ -40,10 +40,10 @@ system_data_directories ()
return tmp;
}
-vector<sys::path>
+std::vector<sys::path>
system_config_directories ()
{
- vector<sys::path> tmp;
+ std::vector<sys::path> tmp;
const char * const * dirs;
dirs = g_get_system_config_dirs ();