diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp
index 8331d1a8a450df37cfb46b8657d0331181013599..765e0a18e67822f7870d49086a2b42d04ce7f6c7 100644
--- a/indra/llui/llmenugl.cpp
+++ b/indra/llui/llmenugl.cpp
@@ -2706,7 +2706,7 @@ void LLMenuGL::setEnabledSubMenus(BOOL enable)
 
 // setItemEnabled() - pass the label and the enable flag for a menu
 // item. TRUE will make sure it's enabled, FALSE will disable it.
-void LLMenuGL::setItemEnabled( const std::string& name, BOOL enable )
+void LLMenuGL::setItemEnabled(std::string_view name, BOOL enable)
 {
 	item_list_t::iterator item_iter;
 	for (item_iter = mItems.begin(); item_iter != mItems.end(); ++item_iter)
@@ -2720,7 +2720,7 @@ void LLMenuGL::setItemEnabled( const std::string& name, BOOL enable )
 	}
 }
 
-void LLMenuGL::setItemVisible( const std::string& name, BOOL visible )
+void LLMenuGL::setItemVisible(std::string_view name, BOOL visible)
 {
 	item_list_t::iterator item_iter;
 	for (item_iter = mItems.begin(); item_iter != mItems.end(); ++item_iter)
@@ -2735,7 +2735,7 @@ void LLMenuGL::setItemVisible( const std::string& name, BOOL visible )
 }
 
 
-void LLMenuGL::setItemLabel(const std::string &name, const std::string &label)
+void LLMenuGL::setItemLabel(std::string_view name, const std::string &label)
 {
     LLMenuItemGL *item = getItem(name);
 
@@ -2787,14 +2787,13 @@ LLMenuItemGL* LLMenuGL::getItem(S32 number)
 	return NULL;
 }
 
-LLMenuItemGL* LLMenuGL::getItem(std::string name)
+LLMenuItemGL* LLMenuGL::getItem(std::string_view name)
 {
-    item_list_t::iterator item_iter;
-    for (item_iter = mItems.begin(); item_iter != mItems.end(); ++item_iter)
+    for (LLMenuItemGL* menu_item : mItems)
     {
-        if ((*item_iter)->getName() == name)
+        if (menu_item->getName() == name)
         {
-            return (*item_iter);
+            return menu_item;
         }
     }
     return NULL;
@@ -2802,12 +2801,11 @@ LLMenuItemGL* LLMenuGL::getItem(std::string name)
 
 LLMenuItemGL* LLMenuGL::getHighlightedItem()
 {
-	item_list_t::iterator item_iter;
-	for (item_iter = mItems.begin(); item_iter != mItems.end(); ++item_iter)
+    for (LLMenuItemGL* menu_item : mItems)
 	{
-		if ((*item_iter)->getHighlight())
+        if (menu_item->getHighlight())
 		{
-			return (*item_iter);
+            return menu_item;
 		}
 	}
 	return NULL;
@@ -3232,7 +3230,7 @@ void LLMenuGL::setVisible(BOOL visible)
 	}
 }
 
-LLMenuGL* LLMenuGL::findChildMenuByName(const std::string& name, BOOL recurse) const
+LLMenuGL* LLMenuGL::findChildMenuByName(std::string_view name, BOOL recurse) const
 {
 	LLView* view = findChildView(name, recurse);
 	if (view)
diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h
index 7413916617ad93336f3aeff5aec95e70a5462a83..3e78b69184fc13f72ae91b8de458bc3cc0e9f392 100644
--- a/indra/llui/llmenugl.h
+++ b/indra/llui/llmenugl.h
@@ -122,7 +122,7 @@ class LLMenuItemGL: public LLUICtrl, public ll::ui::SearchableControl
 	BOOL getAllowKeyRepeat() const { return mAllowKeyRepeat; }
 
 	// change the label
-	void setLabel( const LLStringExplicit& label ) { mLabel = label; }	
+	void setLabel(LLStringExplicit label ) { mLabel = std::move(label); }	
 	std::string getLabel( void ) const { return mLabel.getString(); }
 	virtual BOOL setLabelArg( const std::string& key, const LLStringExplicit& text );
 
@@ -448,7 +448,7 @@ class LLMenuGL
 	virtual bool hasAccelerator(const KEY &key, const MASK &mask) const;
 	virtual BOOL handleAcceleratorKey(KEY key, MASK mask);
 
-	LLMenuGL* findChildMenuByName(const std::string& name, BOOL recurse) const;
+	LLMenuGL* findChildMenuByName(std::string_view name, BOOL recurse) const;
 	
 	BOOL clearHoverItem();
 
@@ -471,14 +471,14 @@ class LLMenuGL
 	// setItemEnabled() - pass the name and the enable flag for a
 	// menu item. TRUE will make sure it's enabled, FALSE will disable
 	// it.
-	void setItemEnabled( const std::string& name, BOOL enable ); 
+    void setItemEnabled(std::string_view name, BOOL enable); 
 	
 	// propagate message to submenus
 	void setEnabledSubMenus(BOOL enable);
 
-	void setItemVisible( const std::string& name, BOOL visible);
+	void setItemVisible(std::string_view name, BOOL visible);
 
-    void setItemLabel(const std::string &name, const std::string &label);
+    void setItemLabel(std::string_view name, const std::string &label);
 	
 	// sets the left,bottom corner of menu, useful for popups
 	void setLeftAndBottom(S32 left, S32 bottom);
@@ -509,7 +509,7 @@ class LLMenuGL
 	void			setItemLastSelected(LLMenuItemGL* item);	// must be in menu
 	U32				getItemCount();				// number of menu items
 	LLMenuItemGL*	getItem(S32 number);		// 0 = first item
-    LLMenuItemGL*   getItem(std::string name);
+    LLMenuItemGL*   getItem(std::string_view name);
 	LLMenuItemGL*	getHighlightedItem();				
 
 	LLMenuItemGL*	highlightNextItem(LLMenuItemGL* cur_item, BOOL skip_disabled = TRUE);
diff --git a/indra/llui/llnotifications.cpp b/indra/llui/llnotifications.cpp
index 262e7f40ae11456517a766f259d6e3f4f1611eb9..cf4326b6225ebaaeb8dc2e08b87362116fd86987 100644
--- a/indra/llui/llnotifications.cpp
+++ b/indra/llui/llnotifications.cpp
@@ -265,7 +265,7 @@ LLSD LLNotificationForm::asLLSD() const
 	return mFormData; 
 }
 
-LLSD LLNotificationForm::getElement(const std::string& element_name)
+LLSD LLNotificationForm::getElement(std::string_view element_name)
 {
 	for (const LLSD& llsd_val : mFormData.array())
 	{
@@ -275,7 +275,7 @@ LLSD LLNotificationForm::getElement(const std::string& element_name)
 }
 
 
-bool LLNotificationForm::hasElement(const std::string& element_name) const
+bool LLNotificationForm::hasElement(std::string_view element_name) const
 {
 	for (const LLSD& llsd_val : mFormData.array())
 	{
@@ -297,7 +297,7 @@ void LLNotificationForm::getElements(LLSD& elements, S32 offset)
     }
 }
 
-bool LLNotificationForm::getElementEnabled(const std::string& element_name) const
+bool LLNotificationForm::getElementEnabled(std::string_view element_name) const
 {
 	for (const LLSD& llsd_val : mFormData.array())
 	{
@@ -310,7 +310,7 @@ bool LLNotificationForm::getElementEnabled(const std::string& element_name) cons
 	return false;
 }
 
-void LLNotificationForm::setElementEnabled(const std::string& element_name, bool enabled)
+void LLNotificationForm::setElementEnabled(std::string_view element_name, bool enabled)
 {
 	for (LLSD& llsd_val : mFormData.array())
 	{
@@ -753,7 +753,7 @@ bool LLNotification::hasUniquenessConstraints() const
 	return (mTemplatep ? mTemplatep->mUnique : false);
 }
 
-bool LLNotification::matchesTag(const std::string& tag)
+bool LLNotification::matchesTag(std::string_view tag)
 {
 	bool result = false;
 	
@@ -1427,11 +1427,12 @@ void LLNotifications::createDefaultChannels()
 }
 
 
-LLNotificationTemplatePtr LLNotifications::getTemplate(const std::string& name)
+LLNotificationTemplatePtr LLNotifications::getTemplate(std::string_view name)
 {
-	if (mTemplates.count(name))
+    auto it = mTemplates.find(name);
+    if (it != mTemplates.end())
 	{
-		return mTemplates[name];
+		return it->second;
 	}
 	else
 	{
@@ -1439,9 +1440,9 @@ LLNotificationTemplatePtr LLNotifications::getTemplate(const std::string& name)
 	}
 }
 
-bool LLNotifications::templateExists(const std::string& name)
+bool LLNotifications::templateExists(std::string_view name)
 {
-	return (mTemplates.count(name) != 0);
+	return (mTemplates.find(name) != mTemplates.end());
 }
 
 void LLNotifications::forceResponse(const LLNotification::Params& params, S32 option)
@@ -1702,7 +1703,7 @@ void LLNotifications::cancel(LLNotificationPtr pNotif)
 	}
 }
 
-void LLNotifications::cancelByName(const std::string& name)
+void LLNotifications::cancelByName(std::string_view name)
 {
 	std::vector<LLNotificationPtr> notifs_to_cancel;
 	for (LLNotificationSet::iterator it=mItems.begin(), end_it = mItems.end();
@@ -1782,7 +1783,7 @@ void LLNotifications::forEachNotification(NotificationProcess process)
 	std::for_each(mItems.begin(), mItems.end(), process);
 }
 
-std::string LLNotifications::getGlobalString(const std::string& key) const
+std::string LLNotifications::getGlobalString(std::string_view key) const
 {
 	GlobalStringMap::const_iterator it = mGlobalStrings.find(key);
 	if (it != mGlobalStrings.end())
@@ -1793,7 +1794,7 @@ std::string LLNotifications::getGlobalString(const std::string& key) const
 	{
 		// if we don't have the key as a global, return the key itself so that the error
 		// is self-diagnosing.
-		return key;
+		return std::string(key);
 	}
 }
 
@@ -1806,13 +1807,13 @@ bool LLNotifications::getIgnoreAllNotifications()
 	return mIgnoreAllNotifications; 
 }
 
-void LLNotifications::setIgnored(const std::string& name, bool ignored)
+void LLNotifications::setIgnored(std::string_view name, bool ignored)
 {
 	LLNotificationTemplatePtr templatep = getTemplate(name);
 	templatep->mForm->setIgnored(ignored);
 }
 
-bool LLNotifications::getIgnored(const std::string& name)
+bool LLNotifications::getIgnored(std::string_view name)
 {
 	LLNotificationTemplatePtr templatep = getTemplate(name);
 	return (mIgnoreAllNotifications) || ( (templatep->mForm->getIgnoreType() != LLNotificationForm::IGNORE_NO) && (templatep->mForm->getIgnored()) );
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index 2d86090a61427d3850baad141bbfb83e853650ce..6a6e717073f6f3fc622280b62a0c9595787e7e9c 100644
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -252,11 +252,11 @@ class LLNotificationForm
 
 	S32 getNumElements() { return mFormData.size(); }
 	LLSD getElement(S32 index) { return mFormData.get(index); }
-	LLSD getElement(const std::string& element_name);
+    LLSD getElement(std::string_view element_name);
     void getElements(LLSD& elements, S32 offset = 0);
-	bool hasElement(const std::string& element_name) const;
-	bool getElementEnabled(const std::string& element_name) const;
-	void setElementEnabled(const std::string& element_name, bool enabled);
+    bool hasElement(std::string_view element_name) const;
+    bool getElementEnabled(std::string_view element_name) const;
+    void setElementEnabled(std::string_view element_name, bool enabled);
 	void addElement(const std::string& type, const std::string& name, const LLSD& value = LLSD(), bool enabled = true);
 	void formatElements(const LLSD& substitutions);
 	// appends form elements from another form serialized as LLSD
@@ -646,7 +646,7 @@ friend class LLNotifications;
 
 	bool hasUniquenessConstraints() const;
 
-	bool matchesTag(const std::string& tag);
+	bool matchesTag(std::string_view tag);
 
 	virtual ~LLNotification() {}
 };
@@ -748,7 +748,7 @@ class LLNotificationChannelBase :
 	:	mFilter(filter), 
 		mItems() 
 	{}
-	virtual ~LLNotificationChannelBase() {}
+	virtual ~LLNotificationChannelBase() = default;
 	// you can also connect to a Channel, so you can be notified of
 	// changes to this channel
     LLBoundListener connectChanged(const LLEventListener& slot)
@@ -918,7 +918,7 @@ class LLNotifications final :
 
 	void add(const LLNotificationPtr pNotif);
 	void cancel(LLNotificationPtr pNotif);
-	void cancelByName(const std::string& name);
+    void cancelByName(std::string_view name);
 	void cancelByOwner(const LLUUID ownerId);
 	void update(const LLNotificationPtr pNotif);
 
@@ -930,19 +930,19 @@ class LLNotifications final :
 
 	// This is all stuff for managing the templates
 	// take your template out
-	LLNotificationTemplatePtr getTemplate(const std::string& name);
+    LLNotificationTemplatePtr getTemplate(std::string_view name);
 	
 	// get the whole collection
 	typedef std::vector<std::string> TemplateNames;
 	TemplateNames getTemplateNames() const;  // returns a list of notification names
 	
-	typedef std::map<std::string, LLNotificationTemplatePtr> TemplateMap;
+	typedef std::map<std::string, LLNotificationTemplatePtr, std::less<>> TemplateMap;
 
 	TemplateMap::const_iterator templatesBegin() { return mTemplates.begin(); }
 	TemplateMap::const_iterator templatesEnd() { return mTemplates.end(); }
 
 	// test for existence
-	bool templateExists(const std::string& name);
+	bool templateExists(std::string_view name);
 
 	typedef std::list<LLNotificationVisibilityRulePtr> VisibilityRuleList;
 	
@@ -952,13 +952,13 @@ class LLNotifications final :
 
 	LLNotificationChannelPtr getChannel(const std::string& channelName);
 	
-	std::string getGlobalString(const std::string& key) const;
+	std::string getGlobalString(std::string_view key) const;
 
 	void setIgnoreAllNotifications(bool ignore);
 	bool getIgnoreAllNotifications();
 
-	void setIgnored(const std::string& name, bool ignored);
-	bool getIgnored(const std::string& name);
+	void setIgnored(std::string_view name, bool ignored);
+    bool getIgnored(std::string_view name);
 
 	bool isVisibleByRules(LLNotificationPtr pNotification);
 	
@@ -984,7 +984,7 @@ class LLNotifications final :
 	
 	LLNotificationMap mUniqueNotifications;
 	
-	typedef std::map<std::string, std::string> GlobalStringMap;
+	typedef std::map<std::string, std::string, std::less<>> GlobalStringMap;
 	GlobalStringMap mGlobalStrings;
 
 	bool mIgnoreAllNotifications;