compatibility: Explicitly specify template type to support older compilers

This makes curret development branch buildable on Ubuntu 18 / Centos 7 /
SUSE 15.
This commit is contained in:
Tomas Babej 2021-04-03 12:31:03 -04:00
parent 80490b625e
commit fe6a6ca93b

View file

@ -123,7 +123,7 @@ std::vector <std::string> CmdContext::getContexts ()
contexts.insert (suffix);
}
return std::vector (contexts.begin (), contexts.end ());
return std::vector <std::string> (contexts.begin (), contexts.end ());
}
////////////////////////////////////////////////////////////////////////////////