summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/recent_sessions.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour/recent_sessions.h')
-rw-r--r--libs/ardour/ardour/recent_sessions.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/libs/ardour/ardour/recent_sessions.h b/libs/ardour/ardour/recent_sessions.h
index e32b67bcd8..d713c4f3f1 100644
--- a/libs/ardour/ardour/recent_sessions.h
+++ b/libs/ardour/ardour/recent_sessions.h
@@ -24,15 +24,11 @@
#include <utility>
#include <string>
-using std::deque;
-using std::pair;
-using std::string;
-
namespace ARDOUR {
- typedef deque<pair<string,string> > RecentSessions;
+ typedef std::deque<std::pair<std::string,std::string> > RecentSessions;
int read_recent_sessions (RecentSessions& rs);
- int store_recent_sessions (string name, string path);
+ int store_recent_sessions (std::string name, std::string path);
int write_recent_sessions (RecentSessions& rs);
}; // namespace ARDOUR