summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2024-07-08 17:18:48 -0400
committerNat Goodspeed <nat@lindenlab.com>2024-07-08 17:18:48 -0400
commitb8c09ed80d076f44b08d6aaa59fffd98abd55811 (patch)
tree9bdc990435b0149199784e727cf6449a21e1d77c
parent0e5cee5d6ddad76ccd37b5ed6bf8d692435bb7dc (diff)
The I/O manipulator std::quoted() must be passed to an ostream.
-rw-r--r--indra/newview/llappearancemgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index a8bc9d8e52..26c41b19ed 100644
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -2948,7 +2948,7 @@ bool LLAppearanceMgr::wearOutfitByName(const std::string& name, std::string& err
}
}
- return wearOutfit(std::quoted(name), cat, error_msg, copy_items, append);
+ return wearOutfit(stringize(std::quoted(name)), cat, error_msg, copy_items, append);
}
bool LLAppearanceMgr::wearOutfit(const LLUUID &cat_id, std::string &error_msg, bool append)