Remove std::string alias (for real this time)

Also use std::string_view in a few more places.
This commit is contained in:
Eelco Dolstra
2022-02-25 16:13:02 +01:00
parent 14b38d0887
commit df552ff53e
110 changed files with 773 additions and 681 deletions
+4 -4
View File
@@ -19,20 +19,20 @@ static inline std::string_view xmlQuote(std::string_view s)
}
static string symbolicName(const std::string & p)
static std::string symbolicName(std::string_view p)
{
return string(p, p.find('-') + 1);
return std::string(p.substr(0, p.find('-') + 1));
}
static string makeEdge(std::string_view src, std::string_view dst)
static std::string makeEdge(std::string_view src, std::string_view dst)
{
return fmt(" <edge source=\"%1%\" target=\"%2%\"/>\n",
xmlQuote(src), xmlQuote(dst));
}
static string makeNode(const ValidPathInfo & info)
static std::string makeNode(const ValidPathInfo & info)
{
return fmt(
" <node id=\"%1%\">\n"