Util: Change Job m_input string -> string_view

This commit is contained in:
Riyyi
2022-07-20 21:32:17 +02:00
parent b4100113fe
commit 4e6c5ca341
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -153,7 +153,7 @@ void Value::clear()
}
}
Value Value::parse(const std::string& input)
Value Value::parse(std::string_view input)
{
return Job(input).fire();
}