diff --git a/indra/llui/lluictrl.cpp b/indra/llui/lluictrl.cpp
index f6c3fe4889be75c1b4ecad854f21fab7b229ca11..61891c9abf6fe7f509302c1d485c910ead891a89 100644
--- a/indra/llui/lluictrl.cpp
+++ b/indra/llui/lluictrl.cpp
@@ -942,16 +942,16 @@ bool LLUICtrl::findHelpTopic(std::string& help_topic_out)
 }
 
 // *TODO: Deprecate; for backwards compatability only:
-boost::signals2::connection LLUICtrl::setCommitCallback( boost::function<void (LLUICtrl*,void*)> cb, void* data)
+boost::signals2::connection LLUICtrl::setCommitCallback( std::function<void (LLUICtrl*,void*)> cb, void* data)
 {
-	return setCommitCallback( boost::bind(cb, _1, data));
+	return setCommitCallback( std::bind(cb, std::placeholders::_1, data));
 }
-boost::signals2::connection LLUICtrl::setValidateBeforeCommit( boost::function<bool (const LLSD& data)> cb )
+boost::signals2::connection LLUICtrl::setValidateBeforeCommit( std::function<bool (const LLSD& data)> cb )
 {
 	if (!mValidateSignal) mValidateSignal = new enable_signal_t();
 	claimMem(mValidateSignal);
 
-	return mValidateSignal->connect(boost::bind(cb, _2));
+	return mValidateSignal->connect(std::bind(cb, std::placeholders::_2));
 }
 
 // virtual
diff --git a/indra/llui/lluictrl.h b/indra/llui/lluictrl.h
index 75041219f22436bd8f6207823eb4cac617460bea..f08a8a255d491d415794a1d6573f6e9d950a2ca1 100644
--- a/indra/llui/lluictrl.h
+++ b/indra/llui/lluictrl.h
@@ -249,8 +249,8 @@ public:
 	boost::signals2::connection setDoubleClickCallback( const mouse_signal_t::slot_type& cb );
 
 	// *TODO: Deprecate; for backwards compatability only:
-	boost::signals2::connection setCommitCallback( boost::function<void (LLUICtrl*,void*)> cb, void* data);	
-	boost::signals2::connection setValidateBeforeCommit( boost::function<bool (const LLSD& data)> cb );
+	boost::signals2::connection setCommitCallback( std::function<void (LLUICtrl*,void*)> cb, void* data);	
+	boost::signals2::connection setValidateBeforeCommit( std::function<bool (const LLSD& data)> cb );
 
 	LLUICtrl* findRootMostFocusRoot();
 
diff --git a/indra/newview/llaisapi.h b/indra/newview/llaisapi.h
index 685c9596d5593856bb33900f8444908af7b38585..755ecac25381027000900d58676e9a0f918070e5 100644
--- a/indra/newview/llaisapi.h
+++ b/indra/newview/llaisapi.h
@@ -65,7 +65,7 @@ private:
     static const std::string INVENTORY_CAP_NAME;
     static const std::string LIBRARY_CAP_NAME;
 
-    typedef boost::function < LLSD (LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t, LLCore::HttpRequest::ptr_t,
+    typedef std::function < LLSD (LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t, LLCore::HttpRequest::ptr_t,
         const std::string, LLSD, LLCore::HttpOptions::ptr_t, LLCore::HttpHeaders::ptr_t) > invokationFn_t;
 
     static void EnqueueAISCommand(const std::string &procName, LLCoprocedureManager::CoProcedure_t proc);
diff --git a/indra/newview/llcompilequeue.h b/indra/newview/llcompilequeue.h
index 15587f6748af0d3a7101609af69465f897d7c55c..c9cd17ec3435910f818ce63016a5263266c8d396 100644
--- a/indra/newview/llcompilequeue.h
+++ b/indra/newview/llcompilequeue.h
@@ -102,7 +102,7 @@ protected:
 	std::string mStartString;
 	bool mMono;
 
-    typedef boost::function<bool(const LLPointer<LLViewerObject> &, LLInventoryObject*, LLEventPump &)>   fnQueueAction_t;
+    typedef std::function<bool(const LLPointer<LLViewerObject> &, LLInventoryObject*, LLEventPump &)>   fnQueueAction_t;
     static void objectScriptProcessingQueueCoro(std::string action, LLHandle<LLFloaterScriptQueue> hfloater, object_data_list_t objectList, fnQueueAction_t func);
 
 };
diff --git a/indra/newview/llfloaterexperiences.cpp b/indra/newview/llfloaterexperiences.cpp
index 64197d07b29df1fc101547127ac3d534055326a5..7041fd82b4872db01281bded59596cd514800714 100644
--- a/indra/newview/llfloaterexperiences.cpp
+++ b/indra/newview/llfloaterexperiences.cpp
@@ -408,7 +408,7 @@ void LLFloaterExperiences::retrieveExperienceListCoro(std::string url,
             {
                 const LLSD& ids = result[it->first];
                 tab->setExperienceList(ids);
-                if (!cback.empty())
+                if (cback != nullptr)
                 {
                     cback(tab, result);
                 }
diff --git a/indra/newview/llfloaterexperiences.h b/indra/newview/llfloaterexperiences.h
index de37974b8e91cf57ecf5794454acbaf7451662b5..b3ed036be3e7b0906e70417759628b039ed66235 100644
--- a/indra/newview/llfloaterexperiences.h
+++ b/indra/newview/llfloaterexperiences.h
@@ -43,7 +43,7 @@ public:
     static LLFloaterExperiences* findInstance();
 protected:
     typedef std::map<std::string, std::string> NameMap_t;
-    typedef boost::function<void(LLPanelExperiences*, const LLSD&)> Callback_t;
+    typedef std::function<void(LLPanelExperiences*, const LLSD&)> Callback_t;
 
     void clearFromRecent(const LLSD& ids);
     void resizeToTabs();
@@ -65,7 +65,7 @@ protected:
         const std::string &errorNotify, Callback_t cback);
 
 private:
-    typedef boost::function < LLSD(LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t, LLCore::HttpRequest::ptr_t,
+    typedef std::function < LLSD(LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t, LLCore::HttpRequest::ptr_t,
         const std::string, LLCore::HttpOptions::ptr_t, LLCore::HttpHeaders::ptr_t) > invokationFn_t;
 
     static void retrieveExperienceListCoro(std::string url, LLHandle<LLFloaterExperiences> hparent, 
diff --git a/indra/newview/llnotificationlistitem.h b/indra/newview/llnotificationlistitem.h
index 09492dcd9345483ecf504f33b24fb28431d10b2c..f9c0e91b2e68216b199655dd6a428be1579c35b6 100644
--- a/indra/newview/llnotificationlistitem.h
+++ b/indra/newview/llnotificationlistitem.h
@@ -83,7 +83,7 @@ public:
 	void onMouseLeave(S32 x, S32 y, MASK mask) override;
 
     //callbacks
-    typedef boost::function<void (LLNotificationListItem* item)> item_callback_t;
+    typedef std::function<void (LLNotificationListItem* item)> item_callback_t;
     typedef boost::signals2::signal<void (LLNotificationListItem* item)> item_signal_t;
     item_signal_t mOnItemClose;
     item_signal_t mOnItemClick;
diff --git a/indra/newview/lltexturectrl.cpp b/indra/newview/lltexturectrl.cpp
index f34aa3f117a2db4ec4e191a9773ee5db1e901772..804687fa79f9faa6a84d7fced305061e5f70b991 100644
--- a/indra/newview/lltexturectrl.cpp
+++ b/indra/newview/lltexturectrl.cpp
@@ -107,10 +107,10 @@ LLFloaterTexturePicker::LLFloaterTexturePicker(
 	mTentative(tentative),
 	mAllowNoTexture(allow_no_texture),
 	mLabel(label),
-	mTentativeLabel(NULL),
-	mResolutionLabel(NULL),
+	mTentativeLabel(nullptr),
+	mResolutionLabel(nullptr),
 	mActive( TRUE ),
-	mFilterEdit(NULL),
+	mFilterEdit(nullptr),
 	mImmediateFilterPermMask(immediate_filter_perm_mask),
 	mDnDFilterPermMask(dnd_filter_perm_mask),
 	mNonImmediateFilterPermMask(non_immediate_filter_perm_mask),
@@ -119,10 +119,10 @@ LLFloaterTexturePicker::LLFloaterTexturePicker(
 	mCanApply(true),
 	mCanPreview(true),
 	mPreviewSettingChanged(false),
-	mOnFloaterCommitCallback(NULL),
-	mOnFloaterCloseCallback(NULL),
-	mSetImageAssetIDCallback(NULL),
-	mOnUpdateImageStatsCallback(NULL)
+	mOnFloaterCommitCallback(nullptr),
+	mOnFloaterCloseCallback(nullptr),
+	mSetImageAssetIDCallback(nullptr),
+	mOnUpdateImageStatsCallback(nullptr)
 {
 	buildFromFile("floater_texture_ctrl.xml");
 	mCanApplyImmediately = can_apply_immediately;
@@ -199,7 +199,7 @@ void LLFloaterTexturePicker::updateImageStats()
 		{
 			std::string formatted_dims = llformat("%d x %d", mTexturep->getFullWidth(),mTexturep->getFullHeight());
 			mResolutionLabel->setTextArg("[DIMENSIONS]", formatted_dims);
-			if (mOnUpdateImageStatsCallback)
+			if (mOnUpdateImageStatsCallback != nullptr)
 			{
 				mOnUpdateImageStatsCallback(mTexturep);
 			}
@@ -309,7 +309,7 @@ BOOL LLFloaterTexturePicker::handleKeyHere(KEY key, MASK mask)
 
 void LLFloaterTexturePicker::onClose(bool app_quitting)
 {
-	if (mOwner && mOnFloaterCloseCallback)
+	if (mOwner && mOnFloaterCloseCallback != nullptr)
 	{
 		mOnFloaterCloseCallback();
 	}
@@ -475,7 +475,7 @@ void LLFloaterTexturePicker::draw()
 	//BOOL allow_copy = FALSE;
 	if( mOwner ) 
 	{
-		mTexturep = NULL;
+		mTexturep = nullptr;
 		if(mImageAssetID.notNull())
 		{
 			mTexturep = LLViewerTextureManager::getFetchedTexture(mImageAssetID);
@@ -616,7 +616,7 @@ PermissionMask LLFloaterTexturePicker::getFilterPermMask()
 
 void LLFloaterTexturePicker::commitIfImmediateSet()
 {
-	if (!mNoCopyTextureSelected && mOnFloaterCommitCallback && mCanApply)
+	if (!mNoCopyTextureSelected && mOnFloaterCommitCallback != nullptr && mCanApply)
 	{
 		mOnFloaterCommitCallback(LLTextureCtrl::TEXTURE_CHANGE, LLUUID::null);
 	}
@@ -624,7 +624,7 @@ void LLFloaterTexturePicker::commitIfImmediateSet()
 
 void LLFloaterTexturePicker::commitCancel()
 {
-	if (!mNoCopyTextureSelected && mOnFloaterCommitCallback && mCanApply)
+	if (!mNoCopyTextureSelected && mOnFloaterCommitCallback != nullptr && mCanApply)
 	{
 		mOnFloaterCommitCallback(LLTextureCtrl::TEXTURE_CANCEL, LLUUID::null);
 	}
@@ -688,7 +688,7 @@ void LLFloaterTexturePicker::onBtnCancel(void* userdata)
 {
 	LLFloaterTexturePicker* self = (LLFloaterTexturePicker*) userdata;
 	self->setImageID( self->mOriginalImageAssetID );
-	if (self->mOnFloaterCommitCallback)
+	if (self->mOnFloaterCommitCallback != nullptr)
 	{
 		self->mOnFloaterCommitCallback(LLTextureCtrl::TEXTURE_CANCEL, LLUUID::null);
 	}
@@ -709,7 +709,7 @@ void LLFloaterTexturePicker::onBtnSelect(void* userdata)
 			local_id = LLLocalBitmapMgr::getWorldID(temp_id);
 		}
 	}
-	if (self->mOnFloaterCommitCallback)
+	if (self->mOnFloaterCommitCallback != nullptr)
 	{
 		self->mOnFloaterCommitCallback(LLTextureCtrl::TEXTURE_SELECT, local_id);
 	}
@@ -751,7 +751,7 @@ void LLFloaterTexturePicker::onSelectionChange(const std::deque<LLFolderViewItem
 		mNoCopyTextureSelected = FALSE;
 		if (itemp)
 		{
-			if (mTextureSelectedCallback)
+			if (mTextureSelectedCallback != nullptr)
 			{
 				mTextureSelectedCallback(itemp);
 			}
@@ -876,14 +876,14 @@ void LLFloaterTexturePicker::onLocalScrollCommit()
 	{
 		LLUUID tracking_id = LLUUID(mLocalScrollCtrl->getSelectedItemLabel(LOCAL_TRACKING_ID_COLUMN));
 		LLUUID inworld_id = LLLocalBitmapMgr::getWorldID(tracking_id);
-		if (mSetImageAssetIDCallback)
+		if (mSetImageAssetIDCallback != nullptr)
 		{
 			mSetImageAssetIDCallback(inworld_id);
 		}
 
 		if (childGetValue("apply_immediate_check").asBoolean())
 		{
-			if (mOnFloaterCommitCallback)
+			if (mOnFloaterCommitCallback != nullptr)
 			{
 				mOnFloaterCommitCallback(LLTextureCtrl::TEXTURE_CHANGE, inworld_id);
 			}
@@ -1207,11 +1207,11 @@ void LLTextureCtrl::showPicker(BOOL take_focus)
 		LLFloaterTexturePicker* texture_floaterp = dynamic_cast<LLFloaterTexturePicker*>(floaterp);
 		if (texture_floaterp)
 		{
-			if (mOnTextureSelectedCallback)
+			if (mOnTextureSelectedCallback != nullptr)
 			{
 				texture_floaterp->setTextureSelectedCallback(mOnTextureSelectedCallback);
 			}
-			if (mOnCloseCallback)
+			if (mOnCloseCallback != nullptr)
 			{
 				texture_floaterp->setOnFloaterCloseCallback(boost::bind(&LLTextureCtrl::onFloaterClose, this));
 			}
@@ -1236,7 +1236,7 @@ void LLTextureCtrl::closeDependentFloater()
 	LLFloaterTexturePicker* floaterp = (LLFloaterTexturePicker*)mFloaterHandle.get();
 	if( floaterp )
 	{
-		floaterp->setOwner(NULL);
+		floaterp->setOwner(nullptr);
 		floaterp->closeFloater();
 	}
 }
@@ -1292,11 +1292,11 @@ void LLTextureCtrl::onFloaterClose()
 
 	if (floaterp)
 	{
-		if (mOnCloseCallback)
+		if (mOnCloseCallback != nullptr)
 		{
 			mOnCloseCallback(this,LLSD());
 		}
-		floaterp->setOwner(NULL);
+		floaterp->setOwner(nullptr);
 	}
 
 	mFloaterHandle.markDead();
@@ -1333,11 +1333,11 @@ void LLTextureCtrl::onFloaterCommit(ETexturePickOp op, LLUUID id)
 			LL_DEBUGS() << "mImageAssetID: " << mImageAssetID << LL_ENDL;
 			}
 
-			if (op == TEXTURE_SELECT && mOnSelectCallback)
+			if (op == TEXTURE_SELECT && mOnSelectCallback != nullptr)
 			{
 				mOnSelectCallback( this, LLSD() );
 			}
-			else if (op == TEXTURE_CANCEL && mOnCancelCallback)
+			else if (op == TEXTURE_CANCEL && mOnCancelCallback != nullptr)
 			{
 				mOnCancelCallback( this, LLSD() );
 			}
@@ -1442,7 +1442,7 @@ void LLTextureCtrl::draw()
 
 	if (!mValid)
 	{
-		mTexturep = NULL;
+		mTexturep = nullptr;
 	}
 	else if (!mImageAssetID.isNull())
 	{
@@ -1455,7 +1455,7 @@ void LLTextureCtrl::draw()
 	}
 	else//mImageAssetID == LLUUID::null
 	{
-		mTexturep = NULL;
+		mTexturep = nullptr;
 	}
 	
 	// Border
@@ -1560,7 +1560,7 @@ BOOL LLTextureCtrl::allowDrop(LLInventoryItem* item)
 	PermissionMask filter_perm_mask = mImmediateFilterPermMask;
 	if ( (item_perm_mask & filter_perm_mask) == filter_perm_mask )
 	{
-		if(mDragCallback)
+		if(mDragCallback != nullptr)
 		{
 			return mDragCallback(this, item);
 		}
@@ -1578,7 +1578,7 @@ BOOL LLTextureCtrl::allowDrop(LLInventoryItem* item)
 BOOL LLTextureCtrl::doDrop(LLInventoryItem* item)
 {
 	// call the callback if it exists.
-	if(mDropCallback)
+	if(mDropCallback != nullptr)
 	{
 		// if it returns TRUE, we return TRUE, and therefore the
 		// commit is called above.
diff --git a/indra/newview/lltexturectrl.h b/indra/newview/lltexturectrl.h
index 8a4bbfb5f6efaa4bfdd295f2510a1d8198480a36..33ec5511fb530c54b95e1e9de12478d09e36e3a9 100644
--- a/indra/newview/lltexturectrl.h
+++ b/indra/newview/lltexturectrl.h
@@ -244,10 +244,10 @@ private:
 
 //////////////////////////////////////////////////////////////////////////////////////////
 // LLFloaterTexturePicker
-typedef boost::function<void(LLTextureCtrl::ETexturePickOp op, LLUUID id)> floater_commit_callback;
-typedef boost::function<void()> floater_close_callback;
-typedef boost::function<void(const LLUUID& asset_id)> set_image_asset_id_callback;
-typedef boost::function<void(LLPointer<LLViewerTexture> texture)> set_on_update_image_stats_callback;
+typedef std::function<void(LLTextureCtrl::ETexturePickOp op, LLUUID id)> floater_commit_callback;
+typedef std::function<void()> floater_close_callback;
+typedef std::function<void(const LLUUID& asset_id)> set_image_asset_id_callback;
+typedef std::function<void(LLPointer<LLViewerTexture> texture)> set_on_update_image_stats_callback;
 
 class LLFloaterTexturePicker : public LLFloater
 {
diff --git a/indra/newview/lltranslate.cpp b/indra/newview/lltranslate.cpp
index 1bf84772673fc5bc891e110b2156db7cbe50ed39..532cae04990473b27601a3da54cf007e6a3c9523 100644
--- a/indra/newview/lltranslate.cpp
+++ b/indra/newview/lltranslate.cpp
@@ -154,7 +154,7 @@ void LLTranslationAPIHandler::verifyKeyCoro(LLTranslate::EService service, std::
     if (!status)
         bOk = false;
 
-    if (!fnc.empty())
+    if (fnc != nullptr)
         fnc(service, bOk);
 }
 
@@ -208,7 +208,7 @@ void LLTranslationAPIHandler::translateMessageCoro(LanguagePair_t fromTo, std::s
         LLStringUtil::replaceString(translation, "&amp;", "&");
         LLStringUtil::replaceString(translation, "&apos;", "'");
 
-        if (!success.empty())
+        if (success != nullptr)
             success(translation, detected_lang);
     }
     else
@@ -219,7 +219,7 @@ void LLTranslationAPIHandler::translateMessageCoro(LanguagePair_t fromTo, std::s
         }
 
         LL_WARNS() << "Translation request failed: " << err_msg << LL_ENDL;
-        if (!failure.empty())
+        if (failure != nullptr)
             failure(status, err_msg);
     }
 
diff --git a/indra/newview/lltranslate.h b/indra/newview/lltranslate.h
index 938730757d052660fe7ebe21ef5f467b9da851c8..6063a8c73c849654aa35f55f82ee5a4dd0db46ce 100644
--- a/indra/newview/lltranslate.h
+++ b/indra/newview/lltranslate.h
@@ -56,9 +56,9 @@ public :
 		SERVICE_GOOGLE,
 	} EService;
 
-    typedef boost::function<void(EService, bool)> KeyVerificationResult_fn;
-    typedef boost::function<void(std::string , std::string )> TranslationSuccess_fn;
-    typedef boost::function<void(int, std::string)> TranslationFailure_fn;
+    typedef std::function<void(EService, bool)> KeyVerificationResult_fn;
+    typedef std::function<void(std::string , std::string )> TranslationSuccess_fn;
+    typedef std::function<void(int, std::string)> TranslationFailure_fn;
 
 	/**
 	 * Translate given text.
diff --git a/indra/newview/llviewerassetupload.h b/indra/newview/llviewerassetupload.h
index 976562f9e5629bd7bdb3a2f801aadd8b17f3f484..cc02aebaf30e69409751933954f1862902f112c2 100644
--- a/indra/newview/llviewerassetupload.h
+++ b/indra/newview/llviewerassetupload.h
@@ -165,8 +165,8 @@ private:
 class LLBufferedAssetUploadInfo : public LLResourceUploadInfo
 {
 public:
-    typedef boost::function<void(LLUUID itemId, LLUUID newAssetId, LLUUID newItemId, LLSD response)> invnUploadFinish_f;
-    typedef boost::function<void(LLUUID itemId, LLUUID taskId, LLUUID newAssetId, LLSD response)> taskUploadFinish_f;
+    typedef std::function<void(LLUUID itemId, LLUUID newAssetId, LLUUID newItemId, LLSD response)> invnUploadFinish_f;
+    typedef std::function<void(LLUUID itemId, LLUUID taskId, LLUUID newAssetId, LLSD response)> taskUploadFinish_f;
 
     LLBufferedAssetUploadInfo(LLUUID itemId, LLAssetType::EType assetType, std::string buffer, invnUploadFinish_f finish);
     LLBufferedAssetUploadInfo(LLUUID itemId, LLPointer<LLImageFormatted> image, invnUploadFinish_f finish);
diff --git a/indra/newview/llvoicevivox.h b/indra/newview/llvoicevivox.h
index de3f6a7a6a5ce91a61c74e58ce2fd5d9a1a55cb2..0fb21db317e89864131eaa4fd8d391733059c12b 100644
--- a/indra/newview/llvoicevivox.h
+++ b/indra/newview/llvoicevivox.h
@@ -306,7 +306,7 @@ protected:
         typedef boost::shared_ptr<sessionState> ptr_t;
         typedef boost::weak_ptr<sessionState> wptr_t;
 
-        typedef boost::function<void(const ptr_t &)> sessionFunc_t;
+        typedef std::function<void(const ptr_t &)> sessionFunc_t;
 
         static ptr_t createSession();
 		~sessionState();