cmOutputConverter: Let cmOutputConverterIsShellOperator accept cm::string_view

This commit is contained in:
Sebastian Holtermann 2019-07-28 14:41:17 +02:00
parent 6675f785be
commit 1b30b28c04

View File

@ -71,9 +71,9 @@ std::string cmOutputConverter::ConvertDirectorySeparatorsForShell(
return result;
}
static bool cmOutputConverterIsShellOperator(const std::string& str)
static bool cmOutputConverterIsShellOperator(cm::string_view str)
{
static std::set<std::string> const shellOperators{
static std::set<cm::string_view> const shellOperators{
"<", ">", "<<", ">>", "|", "||", "&&", "&>", "1>", "2>", "2>&1", "1>&2"
};
return (shellOperators.count(str) != 0);