Skip to content
Snippets Groups Projects
Commit 0185c860 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Small string temp reduction

parent e061e2d8
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -1538,7 +1538,7 @@ void AISUpdate::parseEmbedded(const LLSD& embedded, S32 depth)
}
}
void AISUpdate::parseUUIDArray(const LLSD& content, const std::string& name, uuid_list_t& ids)
void AISUpdate::parseUUIDArray(const LLSD& content, const std::string_view name, uuid_list_t& ids)
{
if (content.has(name))
{
......
......@@ -115,7 +115,7 @@ class AISUpdate
void parseMeta(const LLSD& update);
void parseContent(const LLSD& update);
// [SL:KB] - Patch: Appearance-SyncAttach | Checked: Catznip-3.7
static void parseUUIDArray(const LLSD& content, const std::string& name, uuid_list_t& ids);
static void parseUUIDArray(const LLSD& content, const std::string_view name, uuid_list_t& ids);
// [/SL:KB]
// void parseUUIDArray(const LLSD& content, const std::string& name, uuid_list_t& ids);
void parseLink(const LLSD& link_map, S32 depth);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment