std::vector<wcstring> is wcstring_list_t

This commit is contained in:
Aaron Gyes
2019-03-14 11:15:50 -07:00
parent 0ee9862809
commit 477b2e8d7c
10 changed files with 11 additions and 12 deletions

View File

@@ -135,7 +135,7 @@ wcstring_list_t path_get_paths(const wcstring &cmd, const environment_t &vars) {
}
auto path_var = vars.get(L"PATH");
std::vector<wcstring> pathsv;
wcstring_list_t pathsv;
if (path_var) path_var->to_list(pathsv);
for (auto path : pathsv) {
if (path.empty()) continue;