Cleanup: remove some unused usings.
[dcpomatic.git] / src / lib / cross_linux.cc
index 2fcec28910013fea3ef54cfc8519cbb5a49272ad..07a70cc0b871a1920d6fdfef9facc753c4a7aec2 100644 (file)
@@ -58,7 +58,6 @@ using std::make_pair;
 using std::pair;
 using std::string;
 using std::vector;
-using std::wstring;
 using boost::optional;
 
 
@@ -379,11 +378,14 @@ Drive::unmount ()
 
 
 boost::filesystem::path
-config_path ()
+config_path (optional<string> version)
 {
        boost::filesystem::path p;
        p /= g_get_user_config_dir ();
        p /= "dcpomatic2";
+       if (version) {
+               p /= *version;
+       }
        return p;
 }