yeah these too

This commit is contained in:
2025-12-13 01:21:57 -05:00
parent 3be9f0746f
commit c77701fe72
41 changed files with 1391 additions and 872 deletions
+2 -8
View File
@@ -19,13 +19,7 @@ namespace anm2ed::util::string
return transformed;
}
std::string quote(const std::string& string)
{
return "\"" + string + "\"";
}
std::string quote(const std::string& string) { return "\"" + string + "\""; }
bool to_bool(const std::string& string)
{
return to_lower(string) == "true";
}
bool to_bool(const std::string& string) { return to_lower(string) == "true"; }
}