diff --git a/indra/llappearance/llpolymesh.h b/indra/llappearance/llpolymesh.h
index e3fcab2e7808f190800753add87e277978c857e7..0ec816823688f4416bdfdda343fcaec171313133 100644
--- a/indra/llappearance/llpolymesh.h
+++ b/indra/llappearance/llpolymesh.h
@@ -144,7 +144,7 @@ class LLJointRenderData
 {
 public:
 	LLJointRenderData(const LLMatrix4* world_matrix, LLSkinJoint* skin_joint) : mWorldMatrix(world_matrix), mSkinJoint(skin_joint) {}
-	~LLJointRenderData(){}
+	~LLJointRenderData() = default;
 
 	const LLMatrix4*		mWorldMatrix;
 	LLSkinJoint*			mSkinJoint;
diff --git a/indra/llcharacter/llkeyframemotion.h b/indra/llcharacter/llkeyframemotion.h
index 487ed12ee15e0371d933ccf0a9958a57fee342ad..c3918c26691fe1a54aa74dcc4acfb97be0ca4566 100644
--- a/indra/llcharacter/llkeyframemotion.h
+++ b/indra/llcharacter/llkeyframemotion.h
@@ -429,7 +429,7 @@ class LLKeyframeDataCache
 {
 public:
 	// *FIX: implement this as an actual singleton member of LLKeyframeMotion
-	LLKeyframeDataCache(){};
+	LLKeyframeDataCache() = default;
 	~LLKeyframeDataCache();
 
 	typedef absl::flat_hash_map<LLUUID, class LLKeyframeMotion::JointMotionList*> keyframe_data_map_t; 
diff --git a/indra/llcommon/lleventemitter.h b/indra/llcommon/lleventemitter.h
index cd82fc56f9678705114354704fb1a7fe9a56a731..553a32f53382a9d27606f81c9a783c4bfcff0654 100644
--- a/indra/llcommon/lleventemitter.h
+++ b/indra/llcommon/lleventemitter.h
@@ -51,9 +51,9 @@ class eventEmitter
 		ObserverContainer observers;
 
 	public:
-		eventEmitter () { };
+		eventEmitter () = default;
 
-		~eventEmitter () { };
+		~eventEmitter () = default;
 
 		///////////////////////////////////////////////////////////////////////////////
 		//
diff --git a/indra/llcommon/llhandle.h b/indra/llcommon/llhandle.h
index 7e2e1279eb0ba3bbbbf065d98d870d1f8a0c498c..870b89c27adc46dbfad0040a11ec614ca59a5355 100644
--- a/indra/llcommon/llhandle.h
+++ b/indra/llcommon/llhandle.h
@@ -229,7 +229,7 @@ public:
     };
 
 protected:
-    LLCheckedHandleBase() { }
+    LLCheckedHandleBase() = default;
 
 };
 
diff --git a/indra/llcommon/llinitparam.h b/indra/llcommon/llinitparam.h
index 3b4ea7b1fda98b877cd9afd418d63705ce9b774e..b8ab5c9ad7a608027b495b84893d1a7a298a84f8 100644
--- a/indra/llcommon/llinitparam.h
+++ b/indra/llcommon/llinitparam.h
@@ -845,7 +845,7 @@ namespace LLInitParam
 			mParamProvided(false)
 		{}
 
-		virtual ~BaseBlock() {}
+		virtual ~BaseBlock() = default;
 		bool submitValue(Parser::name_stack_t& name_stack, Parser& p, bool silent=false);
 
 		param_handle_t getHandleFromParam(const Param* param) const;
diff --git a/indra/llcommon/llmemory.cpp b/indra/llcommon/llmemory.cpp
index 0fd6effeac93f57fc93c7a0f3b8e5718f04d3171..2344d9422963fa0ef14f52515666a6cbf916be83 100644
--- a/indra/llcommon/llmemory.cpp
+++ b/indra/llcommon/llmemory.cpp
@@ -370,7 +370,7 @@ struct mem_info {
 	}
 
 private:
-	mem_info(){}
+	mem_info() = default;
 };
 
 void* ll_aligned_malloc_fallback( size_t size, int align )
diff --git a/indra/llcommon/llprocess.cpp b/indra/llcommon/llprocess.cpp
index ae14b4b8311ce28cafc4ac6ae20b35e9d7c53baf..484eb6cf61a80bd1e90967d3bd7a51c90247e795 100644
--- a/indra/llcommon/llprocess.cpp
+++ b/indra/llcommon/llprocess.cpp
@@ -130,7 +130,6 @@ static LLProcessListener sProcessListener;
 /*****************************************************************************
 *   WritePipe and ReadPipe
 *****************************************************************************/
-LLProcess::BasePipe::~BasePipe() {}
 const LLProcess::BasePipe::size_type
 	  // use funky syntax to call max() to avoid blighted max() macros
 	  LLProcess::BasePipe::npos((std::numeric_limits<LLProcess::BasePipe::size_type>::max)());
diff --git a/indra/llcommon/llprocess.h b/indra/llcommon/llprocess.h
index 7f2095c2a0143def353ccb16ab98d15f2e595341..8f69a0a807dea248c09f31f4257b807b8cda431b 100644
--- a/indra/llcommon/llprocess.h
+++ b/indra/llcommon/llprocess.h
@@ -365,7 +365,7 @@ public:
 	class LL_COMMON_API BasePipe
 	{
 	public:
-		virtual ~BasePipe() = 0;
+		virtual ~BasePipe() = default;
 
 		typedef std::size_t size_type;
 		static const size_type npos;
diff --git a/indra/llmessage/llhttpnode.cpp b/indra/llmessage/llhttpnode.cpp
index 24cd74fc8892a19709073d2a5041d04687982cc8..bec3cf6d1329ce740a414fecee02da73e962558d 100644
--- a/indra/llmessage/llhttpnode.cpp
+++ b/indra/llmessage/llhttpnode.cpp
@@ -443,8 +443,6 @@ namespace
     }
 }
 
-LLHTTPRegistrar::NodeFactory::~NodeFactory() { }
-
 void LLHTTPRegistrar::registerFactory(
     const std::string& path, NodeFactory& factory)
 {
diff --git a/indra/llmessage/llhttpnode.h b/indra/llmessage/llhttpnode.h
index 839ccb9f2c79c925ce5205dc137354eb7e19a912..f3601be773d3d0f57c3e0fd661699c192fd59ffb 100644
--- a/indra/llmessage/llhttpnode.h
+++ b/indra/llmessage/llhttpnode.h
@@ -350,7 +350,7 @@ public:
 	class NodeFactory
 	{
 	public:
-		virtual ~NodeFactory();
+		virtual ~NodeFactory() = default;
 		virtual LLHTTPNode* build() const = 0;
 	};
 
diff --git a/indra/llmessage/llpacketack.h b/indra/llmessage/llpacketack.h
index cb6c2b01ce369b0fb881bd6245fcc346500bca86..f92d8431c67add0ade75688b2a62c84f7784b3df 100644
--- a/indra/llmessage/llpacketack.h
+++ b/indra/llmessage/llpacketack.h
@@ -47,7 +47,7 @@ public:
 		clear();
 	};
 
-	~LLReliablePacketParams() { };
+	~LLReliablePacketParams() = default;
 
 	void clear()
 	{
diff --git a/indra/llmessage/llxfermanager.h b/indra/llmessage/llxfermanager.h
index 45ae2ffdd3d6097055c9568e1891c28d4c2d42c3..7b9b2afe87bb8ed63bd5be832cb96172aef16544 100644
--- a/indra/llmessage/llxfermanager.h
+++ b/indra/llmessage/llxfermanager.h
@@ -52,7 +52,7 @@ class LLHostStatus
 	S32    mNumPending;
 
 	LLHostStatus() {mNumActive = 0; mNumPending = 0;};
-	virtual ~LLHostStatus(){};
+	virtual ~LLHostStatus() = default;
 };
 
 // Class stores ack information, to be put on list so we can throttle xfer rate.
diff --git a/indra/llprimitive/llmodel.h b/indra/llprimitive/llmodel.h
index 6c25a534461b0824f0d64377ecded6da9c997f1f..b70674a8a8d46d9a2b4bbe387e13cff33509b187 100644
--- a/indra/llprimitive/llmodel.h
+++ b/indra/llprimitive/llmodel.h
@@ -109,7 +109,7 @@ public:
 	class Decomposition
 	{
 	public:
-		Decomposition() { }
+		Decomposition() = default;
 		Decomposition(LLSD& data);
 		void fromLLSD(LLSD& data);
 		LLSD asLLSD() const;
diff --git a/indra/llui/llflashtimer.h b/indra/llui/llflashtimer.h
index 164c95357b29801a8e74d845a4a097e014c2998c..d38e20c262ea2d130d0c8a0856fe7475b30772f3 100644
--- a/indra/llui/llflashtimer.h
+++ b/indra/llui/llflashtimer.h
@@ -43,7 +43,7 @@ public:
 	 * @param cb - callback to be called each tick
 	 */
 	LLFlashTimer(callback_t cb = NULL, S32 count = 0, F32 period = 0.0);
-	~LLFlashTimer() {};
+	~LLFlashTimer() = default;
 
 	/*virtual*/ BOOL tick() override;
 
diff --git a/indra/llui/llfolderview.h b/indra/llui/llfolderview.h
index c39ff1781a8836cd85baf57c3bd8f20feeb6b339..0938cd78cddfbc80773886c5fd43d9fc76b1d2c0 100644
--- a/indra/llui/llfolderview.h
+++ b/indra/llui/llfolderview.h
@@ -66,7 +66,7 @@ class LLTextBox;
 class LLFolderViewScrollContainer final : public LLScrollContainer
 {
 public:
-	/*virtual*/ ~LLFolderViewScrollContainer() {};
+	/*virtual*/ ~LLFolderViewScrollContainer() = default;
 	/*virtual*/ const LLRect getScrolledViewRect() const override;
 
 protected:
@@ -344,7 +344,7 @@ public:
 class LLFolderViewFunctor
 {
 public:
-	virtual ~LLFolderViewFunctor() {}
+	virtual ~LLFolderViewFunctor() = default;
 	virtual void doFolder(LLFolderViewFolder* folder) = 0;
 	virtual void doItem(LLFolderViewItem* item) = 0;
 };
@@ -364,7 +364,7 @@ class LLSelectFirstFilteredItem : public LLFolderViewFunctor
 {
 public:
 	LLSelectFirstFilteredItem() : mItemSelected(FALSE), mFolderSelected(FALSE) {}
-	virtual ~LLSelectFirstFilteredItem() {}
+	virtual ~LLSelectFirstFilteredItem() = default;
 	void doFolder(LLFolderViewFolder* folder) override;
 	void doItem(LLFolderViewItem* item) override;
 	BOOL wasItemSelected() { return mItemSelected || mFolderSelected; }
@@ -376,8 +376,8 @@ protected:
 class LLOpenFilteredFolders : public LLFolderViewFunctor
 {
 public:
-	LLOpenFilteredFolders()  {}
-	virtual ~LLOpenFilteredFolders() {}
+	LLOpenFilteredFolders() = default;
+	virtual ~LLOpenFilteredFolders() = default;
 	void doFolder(LLFolderViewFolder* folder) override;
 	void doItem(LLFolderViewItem* item) override;
 };
diff --git a/indra/llui/llhelp.h b/indra/llui/llhelp.h
index 82ee60ac6c958bc510a425b273accd0983dd3d9a..380cf808b96e86e0442abd3f026dcdbcfba8197b 100644
--- a/indra/llui/llhelp.h
+++ b/indra/llui/llhelp.h
@@ -31,7 +31,7 @@
 class LLHelp
 {
  public:
-    virtual ~LLHelp() {}
+    virtual ~LLHelp() = default;
 	virtual void showTopic(const std::string &topic) = 0;
 	virtual std::string getURL(const std::string &topic) = 0;
 	// return default (fallback) topic name suitable for showTopic()
diff --git a/indra/llui/llloadingindicator.h b/indra/llui/llloadingindicator.h
index b5e86c0ac10943359133658bd279fb4603faf4ae..909bc7f50cb6994f873c793e0d7c78d9c40cd57a 100644
--- a/indra/llui/llloadingindicator.h
+++ b/indra/llui/llloadingindicator.h
@@ -71,7 +71,7 @@ public:
 		{}
 	};
 
-	virtual ~LLLoadingIndicator() {}
+	virtual ~LLLoadingIndicator() = default;
 
 	// llview overrides
 	void draw() override;
diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h
index 88d585b1a419170d78a95bdf2d77c49db1b3b03c..36332ca5b9f0bfe4ffc9ae9a5c61c449abb6e267 100644
--- a/indra/llui/llmenugl.h
+++ b/indra/llui/llmenugl.h
@@ -701,7 +701,7 @@ protected:
 	friend class LLUICtrlFactory;
 
 public:
-	virtual ~LLContextMenu() {}
+	virtual ~LLContextMenu() = default;
 
 	// LLView Functionality
 	// can't set visibility directly, must call show or hide
@@ -818,7 +818,7 @@ public:
 	struct Params : public LLInitParam::Block<Params, LLPanel::Params>
 	{};
 	LLMenuHolderGL(const Params& p);
-	virtual ~LLMenuHolderGL() {}
+	virtual ~LLMenuHolderGL() = default;
 
 	virtual BOOL hideMenus();
 	void reshape(S32 width, S32 height, BOOL called_from_parent = TRUE) override;
@@ -909,9 +909,9 @@ public:
 		static LLEditMenuHandlerMgr instance;
 		return instance;
 	}
-	virtual ~LLEditMenuHandlerMgr() {}
+	virtual ~LLEditMenuHandlerMgr() = default;
 private:
-	LLEditMenuHandlerMgr() {};
+	LLEditMenuHandlerMgr() = default;;
 };
 
 
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h
index 0d981dd845e5b7427b298349d600ef07068e0f7f..5ec2bb7247c49757235bd8c258c51c9b3c81a46b 100644
--- a/indra/llui/llnotifications.h
+++ b/indra/llui/llnotifications.h
@@ -135,7 +135,7 @@ public:
 	{
 	}
 
-	virtual ~LLNotificationContext() {}
+	virtual ~LLNotificationContext() = default;
 
 	LLSD asLLSD() const
 	{
@@ -635,7 +635,7 @@ public:
 
 	bool matchesTag(const std::string& tag);
 
-	virtual ~LLNotification() {}
+	virtual ~LLNotification() = default;
 };
 
 std::ostream& operator<<(std::ostream& s, const LLNotification& notification);
@@ -735,7 +735,7 @@ public:
 	:	mItems(), 
 		mFilter(std::move(filter)) 
 	{}
-	virtual ~LLNotificationChannelBase() {}
+	virtual ~LLNotificationChannelBase() = default;
 	// you can also connect to a Channel, so you can be notified of
 	// changes to this channel
 	template <typename LISTENER>
diff --git a/indra/llui/llsearcheditor.h b/indra/llui/llsearcheditor.h
index 0638e28289aec502f8b0d29a9841f2df21ab2978..9c0cb83df81fc6b18256e28fd7fe4f66c5ecd3d0 100644
--- a/indra/llui/llsearcheditor.h
+++ b/indra/llui/llsearcheditor.h
@@ -65,7 +65,7 @@ protected:
 	friend class LLUICtrlFactory;
 
 public:
-	virtual ~LLSearchEditor() {}
+	virtual ~LLSearchEditor() = default;
 
 	/*virtual*/ void	draw() override;
 
diff --git a/indra/llui/llspellcheckmenuhandler.h b/indra/llui/llspellcheckmenuhandler.h
index 74b3a654f3129a9dd16282be403d659a18c06e6c..87964280a03353a111176ce93809df005914a0ae 100644
--- a/indra/llui/llspellcheckmenuhandler.h
+++ b/indra/llui/llspellcheckmenuhandler.h
@@ -30,7 +30,7 @@
 class LLSpellCheckMenuHandler
 {
 public:
-    virtual ~LLSpellCheckMenuHandler() {}
+    virtual ~LLSpellCheckMenuHandler() = default;
     
 	virtual bool	getSpellCheck() const			{ return false; }
 
diff --git a/indra/llui/llspinctrl.h b/indra/llui/llspinctrl.h
index f1d21fadb476f1ee76cca25cf102589984f91c32..126a91ab47b5402d8c16ded45b267cb72f1627e9 100644
--- a/indra/llui/llspinctrl.h
+++ b/indra/llui/llspinctrl.h
@@ -59,7 +59,7 @@ protected:
 	LLSpinCtrl(const Params&);
 	friend class LLUICtrlFactory;
 public:
-	virtual ~LLSpinCtrl() {} // Children all cleaned up by default view destructor.
+	virtual ~LLSpinCtrl() = default; // Children all cleaned up by default view destructor.
 
 	virtual void    forceSetValue(const LLSD& value ) ;
 	void	setValue(const LLSD& value ) override;
diff --git a/indra/llui/lltextbase.h b/indra/llui/lltextbase.h
index 99ec5aa7a2cd5d72e919d875c923d61f2387e669..db7fd76d5bfdf506f72f6e73640bf01e8ad2c7df 100644
--- a/indra/llui/lltextbase.h
+++ b/indra/llui/lltextbase.h
@@ -516,7 +516,7 @@ protected:
 				mSegments.push_back(segment);
 			}
 		}
-		virtual			~TextCmd() {}
+		virtual			~TextCmd() = default;
 		virtual BOOL	execute(LLTextBase* editor, S32* delta) = 0;
 		virtual S32		undo(LLTextBase* editor) = 0;
 		virtual S32		redo(LLTextBase* editor) = 0;
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp
index b8513f1ace4b97bd4e17c474dc9c00e3678e87dc..6365f57412cb72600e305f314b3d7a9af5e6b627 100644
--- a/indra/llui/lltexteditor.cpp
+++ b/indra/llui/lltexteditor.cpp
@@ -88,7 +88,7 @@ public:
 		: TextCmd(pos, group_with_next, segment), mWString(std::move(ws))
 	{
 	}
-	virtual ~TextCmdInsert() {}
+	virtual ~TextCmdInsert() = default;
 
 	BOOL execute( LLTextBase* editor, S32* delta ) override
 	{
diff --git a/indra/llui/llundo.h b/indra/llui/llundo.h
index a6da55012675f0efddc985a53d67fa47a1d909d8..ba131b0e83d0c3691a28b69b81f9785c5338c1c0 100644
--- a/indra/llui/llundo.h
+++ b/indra/llui/llundo.h
@@ -40,7 +40,7 @@ public:
 		virtual void cleanup() {};
 	protected:
 		LLUndoAction(): mClusterID(0) {};
-		virtual ~LLUndoAction(){};
+		virtual ~LLUndoAction() = default;
 	private:
 		S32		mClusterID;
 	};
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp
index 2a80ea671f41c489936b6a2aedb79bddcbf639f7..d0a1bd47460578d8f812d8d4ea0f3250c0cd48a0 100644
--- a/indra/llui/llview.cpp
+++ b/indra/llui/llview.cpp
@@ -1945,7 +1945,7 @@ public:
 		:	mTabOrder(order),
 		mDefaultTabGroup(default_tab_group)
 	{}
-	virtual ~CompareByTabOrder() {}
+	virtual ~CompareByTabOrder() = default;
 
 	// This method compares two LLViews by the tab order specified in the comparator object.  The
 	// code for this is a little convoluted because each argument can have four states:
diff --git a/indra/llui/llviewquery.h b/indra/llui/llviewquery.h
index 4344b4c3deebd8379a1834bcd278f75211f7c372..f8b5d4511f6e2c38703c0670ff7115074a230e1f 100644
--- a/indra/llui/llviewquery.h
+++ b/indra/llui/llviewquery.h
@@ -41,14 +41,14 @@ typedef std::pair<BOOL, BOOL>		filterResult_t;
 class LLQueryFilter
 {
 public:
-	virtual ~LLQueryFilter() {};
+	virtual ~LLQueryFilter() = default;
 	virtual filterResult_t operator() (const LLView* const view, const viewList_t & children) const = 0;
 };
 
 class LLQuerySorter
 {
 public:
-	virtual ~LLQuerySorter() {};
+	virtual ~LLQuerySorter() = default;
 	virtual void sort(LLView * parent, viewList_t &children) const;
 };
 
@@ -106,8 +106,8 @@ public:
 	typedef filterList_t::iterator				filterList_iter_t;
 	typedef filterList_t::const_iterator		filterList_const_iter_t;
 
-	LLViewQuery() : mPreFilters(), mPostFilters(), mSorterp() {}
-	virtual ~LLViewQuery() {}
+	LLViewQuery() : mPreFilters(), mPostFilters(), mSorterp(nullptr) {}
+	virtual ~LLViewQuery() = default;
 
 	void addPreFilter(const LLQueryFilter* prefilter) { mPreFilters.push_back(prefilter); }
 	void addPostFilter(const LLQueryFilter* postfilter) { mPostFilters.push_back(postfilter); }
diff --git a/indra/llui/llxuiparser.cpp b/indra/llui/llxuiparser.cpp
index 70b97a03879f927de2207f592d6a1468c6a40815..a3bbeee4a4671b6d7c3d1f4999d05696fe958a15 100644
--- a/indra/llui/llxuiparser.cpp
+++ b/indra/llui/llxuiparser.cpp
@@ -331,8 +331,6 @@ LLXSDWriter::LLXSDWriter()
 	registerInspectFunc<LLSD>(std::bind(&LLXSDWriter::writeAttribute, this, "xs:string", std::placeholders::_1, std::placeholders::_2, std::placeholders::_3, std::placeholders::_4));
 }
 
-LLXSDWriter::~LLXSDWriter() {}
-
 void LLXSDWriter::writeXSD(const std::string& type_name, LLXMLNodePtr node, const LLInitParam::BaseBlock& block, const std::string& xml_namespace)
 {
 	Schema schema(xml_namespace);
diff --git a/indra/llui/llxuiparser.h b/indra/llui/llxuiparser.h
index b87f5cd92676a622d7486e5292cf5bd531a2a0c1..d99f4d2689f2fd7dab1d67724a6f36e8a1403173 100644
--- a/indra/llui/llxuiparser.h
+++ b/indra/llui/llxuiparser.h
@@ -64,7 +64,7 @@ public:
 	/*virtual*/ std::string getCurrentElementName() override { return LLStringUtil::null; }
 	/*virtual*/ std::string getCurrentFileName() override { return LLStringUtil::null; }
 	LLXSDWriter();
-	~LLXSDWriter();
+	~LLXSDWriter() = default;
 
 protected:
 	void writeAttribute(const std::string& type, const Parser::name_stack_t&, S32 min_count, S32 max_count, const std::vector<std::string>* possible_values);
diff --git a/indra/llvfs/llvfsthread.h b/indra/llvfs/llvfsthread.h
index 73cd0b91f994bac43b1e178e46a72dfcf17da44e..c35bdf65c24b4ae5a5048974db17f4eb19625c86 100644
--- a/indra/llvfs/llvfsthread.h
+++ b/indra/llvfs/llvfsthread.h
@@ -49,7 +49,7 @@ public:
 	class Request : public QueuedRequest
 	{
 	protected:
-		~Request() {}; // use deleteRequest()
+		~Request() = default; // use deleteRequest()
 		
 	public:
 		Request(handle_t handle, U32 priority, U32 flags,
diff --git a/indra/llwindow/lldragdropwin32.cpp b/indra/llwindow/lldragdropwin32.cpp
index 884919d38e794aac92cdd50a153ed7542ca71fb9..b0de3d3b6030a5e58a955f17059acb624eb5bbe8 100644
--- a/indra/llwindow/lldragdropwin32.cpp
+++ b/indra/llwindow/lldragdropwin32.cpp
@@ -295,18 +295,12 @@ class LLDragDropWin32Target:
 ////////////////////////////////////////////////////////////////////////////////
 //
 LLDragDropWin32::LLDragDropWin32() :
-	mDropTarget(nullptr ),
-	mDropWindowHandle(nullptr )
+	mDropTarget(nullptr),
+	mDropWindowHandle(nullptr)
 
 {
 }
 
-////////////////////////////////////////////////////////////////////////////////
-//
-LLDragDropWin32::~LLDragDropWin32()
-{
-}
-
 ////////////////////////////////////////////////////////////////////////////////
 //
 bool LLDragDropWin32::init( HWND hWnd )
diff --git a/indra/llwindow/lldragdropwin32.h b/indra/llwindow/lldragdropwin32.h
index 4673242cbab0769801dbcda6633027eea25509bc..c6fceda708561c57026808d9e67cd4a97adc8258 100644
--- a/indra/llwindow/lldragdropwin32.h
+++ b/indra/llwindow/lldragdropwin32.h
@@ -38,7 +38,7 @@ class LLDragDropWin32
 {
 	public:
 		LLDragDropWin32();
-		~LLDragDropWin32();
+		~LLDragDropWin32() = default;;
 
 		bool init( HWND hWnd );
 		void reset();
@@ -61,8 +61,8 @@ class LLDragDropWin32
 class LLDragDropWin32
 {
 	public:
-		LLDragDropWin32() {};
-		~LLDragDropWin32() {};
+		LLDragDropWin32() = default;
+		~LLDragDropWin32() = default;
 
 		bool init( HWND hWnd ) { return false; };
 		void reset() { };
diff --git a/indra/llwindow/llkeyboardheadless.h b/indra/llwindow/llkeyboardheadless.h
index 9dc5e20e2be24824eb64611440d026260517a458..74ab87c0032c798c5652b04745f5513eb9be37a0 100644
--- a/indra/llwindow/llkeyboardheadless.h
+++ b/indra/llwindow/llkeyboardheadless.h
@@ -33,7 +33,7 @@ class LLKeyboardHeadless : public LLKeyboard
 {
 public:
 	LLKeyboardHeadless();
-	/*virtual*/ ~LLKeyboardHeadless() {};
+	/*virtual*/ ~LLKeyboardHeadless() = default;
 
 	/*virtual*/ BOOL	handleKeyUp(const U32 key, MASK mask) override;
 	/*virtual*/ BOOL	handleKeyDown(const U32 key, MASK mask) override;
diff --git a/indra/llwindow/llkeyboardwin32.h b/indra/llwindow/llkeyboardwin32.h
index 8914ff0120ef077d7cf417bd02285935cec5a95b..40b12feacd8dcd8ed4bf0c8b079c2b5d0cb6484f 100644
--- a/indra/llwindow/llkeyboardwin32.h
+++ b/indra/llwindow/llkeyboardwin32.h
@@ -37,7 +37,7 @@ class LLKeyboardWin32 : public LLKeyboard
 {
 public:
 	LLKeyboardWin32();
-	/*virtual*/ ~LLKeyboardWin32() {};
+	/*virtual*/ ~LLKeyboardWin32() = default;
 
 	/*virtual*/ BOOL	handleKeyUp(const U32 key, MASK mask) override;
 	/*virtual*/ BOOL	handleKeyDown(const U32 key, MASK mask) override;
diff --git a/indra/llwindow/llmousehandler.h b/indra/llwindow/llmousehandler.h
index d825a3424c0bb2524b718ad87a75fa3fc2bccf16..8d63e32417a461a78f7412d76eb2cc7912583fdf 100644
--- a/indra/llwindow/llmousehandler.h
+++ b/indra/llwindow/llmousehandler.h
@@ -37,8 +37,8 @@
 class LLMouseHandler
 {
 public:
-	LLMouseHandler() {}
-	virtual ~LLMouseHandler() {}
+	LLMouseHandler() = default;
+	virtual ~LLMouseHandler() = default;
 
 	typedef enum {
 		SHOW_NEVER,
diff --git a/indra/llwindow/llpreeditor.h b/indra/llwindow/llpreeditor.h
index 9802fd8606d7177e9ca29afae0c565cd77204978..548fd354a288fe6ebafcb71e8487ca4f79ad279e 100644
--- a/indra/llwindow/llpreeditor.h
+++ b/indra/llwindow/llpreeditor.h
@@ -38,7 +38,7 @@ public:
 	
 	// We don't delete against LLPreeditor, but compilers complain without this...
 	
-	virtual ~LLPreeditor() {};
+	virtual ~LLPreeditor() = default;
 
 	// Discard any preedit info. on this preeditor.
 	
diff --git a/indra/llwindow/llwindow.h b/indra/llwindow/llwindow.h
index cc665171dc662649b6b102bd8f31acbe59a14f64..7500033240de5aa2eecb5241d15a216790aac268 100644
--- a/indra/llwindow/llwindow.h
+++ b/indra/llwindow/llwindow.h
@@ -237,8 +237,8 @@ protected:
 class LLSplashScreen
 {
 public:
-	LLSplashScreen() { };
-	virtual ~LLSplashScreen() { };
+	LLSplashScreen() = default;
+	virtual ~LLSplashScreen() = default;
 
 
 	// Call to display the window.
diff --git a/indra/llwindow/llwindowcallbacks.h b/indra/llwindow/llwindowcallbacks.h
index 3eea8ddea93a2593b81fae9c1f61723709279697..ee561ecde670c6b447e6ec24cba21b112c1ee5de 100644
--- a/indra/llwindow/llwindowcallbacks.h
+++ b/indra/llwindow/llwindowcallbacks.h
@@ -32,7 +32,7 @@ class LLWindow;
 class LLWindowCallbacks
 {
 public:
-	virtual ~LLWindowCallbacks() {}
+	virtual ~LLWindowCallbacks() = default;
 	virtual BOOL handleTranslatedKeyDown(KEY key,  MASK mask, BOOL repeated);
 	virtual BOOL handleTranslatedKeyUp(KEY key,  MASK mask);
 	virtual void handleScanKey(KEY key, BOOL key_down, BOOL key_up, BOOL key_level);
diff --git a/indra/llwindow/llwindowheadless.h b/indra/llwindow/llwindowheadless.h
index f225fa66249eabe3eb7f080ebfb9b6f9fca15d5d..8eaf0cdf34495dd4e9ed02e1c620c2b6ffa81380 100644
--- a/indra/llwindow/llwindowheadless.h
+++ b/indra/llwindow/llwindowheadless.h
@@ -107,8 +107,8 @@ private:
 class LLSplashScreenHeadless : public LLSplashScreen
 {
 public:
-	LLSplashScreenHeadless() {};
-	virtual ~LLSplashScreenHeadless() {};
+	LLSplashScreenHeadless() = default;
+	virtual ~LLSplashScreenHeadless() = default;
 
 	/*virtual*/ void showImpl() override {};
 	/*virtual*/ void updateImpl(const std::string& mesg) override {};
diff --git a/indra/llxml/llcontrol.h b/indra/llxml/llcontrol.h
index 352dac42a5386766eba6373302d269070e739435..e04988627c9ed3b2b56cc4866bd1a1e3bc444e28 100644
--- a/indra/llxml/llcontrol.h
+++ b/indra/llxml/llcontrol.h
@@ -184,7 +184,7 @@ public:
 
 	struct ApplyFunctor
 	{
-		virtual ~ApplyFunctor() {};
+		virtual ~ApplyFunctor() = default;
 		virtual void apply(const std::string& name, LLControlVariable* control) = 0;
 	};
 	void applyToAll(ApplyFunctor* func);
diff --git a/indra/llxml/llxmlparser.cpp b/indra/llxml/llxmlparser.cpp
index ffd3f0572b1cdd28a03a3de26e261dde5647a40e..0420de19cd595b69ba300a8638508ff3c788df46 100644
--- a/indra/llxml/llxmlparser.cpp
+++ b/indra/llxml/llxmlparser.cpp
@@ -277,8 +277,8 @@ class LLXmlDOMParser : public LLXmlParser
 {
 public:
 
-	LLXmlDOMParser() {}
-	virtual ~LLXmlDOMParser() {}
+	LLXmlDOMParser() = default;
+	virtual ~LLXmlDOMParser() = default;
 
 	void tabs()
 	{
diff --git a/indra/newview/llaccountingcostmanager.h b/indra/newview/llaccountingcostmanager.h
index e2c08faf620a85108eff0ce8f9b5960f9e049d06..cc0d3b40799f341e84e6fb1b62be233fd8425cf8 100644
--- a/indra/newview/llaccountingcostmanager.h
+++ b/indra/newview/llaccountingcostmanager.h
@@ -43,7 +43,7 @@ class LLAccountingCostObserver
 {
 public:
 	LLAccountingCostObserver() { mObserverHandle.bind(this); }
-	virtual ~LLAccountingCostObserver() {}
+	virtual ~LLAccountingCostObserver() = default;
 	virtual void onWeightsUpdate(const SelectionCost& selection_cost) = 0;
 	virtual void setErrorStatus(S32 status, const std::string& reason) = 0;
 	const LLHandle<LLAccountingCostObserver>& getObserverHandle() const { return mObserverHandle; }
diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp
index a315fc5ce5113d0e964a22312991fe755101cc5d..8e477355abfaa00c1433363aca519dd8e659b051 100644
--- a/indra/newview/llagent.cpp
+++ b/indra/newview/llagent.cpp
@@ -257,8 +257,8 @@ std::map<std::string, std::string> LLAgent::sTeleportProgressMessages;
 class LLAgentFriendObserver : public LLFriendObserver
 {
 public:
-	LLAgentFriendObserver() {}
-	virtual ~LLAgentFriendObserver() {}
+	LLAgentFriendObserver() = default;
+	virtual ~LLAgentFriendObserver() = default;
 	void changed(U32 mask) override;
 };
 
diff --git a/indra/newview/llappearancemgr.h b/indra/newview/llappearancemgr.h
index 1558001f3ea00c8dbcedcacfa999d563a76cdb42..ae18594f2c8293c91d9fd0c1c9a5d983eeb5e131 100644
--- a/indra/newview/llappearancemgr.h
+++ b/indra/newview/llappearancemgr.h
@@ -350,7 +350,7 @@ private:
 class LLRequestServerAppearanceUpdateOnDestroy: public LLInventoryCallback
 {
 public:
-	LLRequestServerAppearanceUpdateOnDestroy() {}
+	LLRequestServerAppearanceUpdateOnDestroy() = default;
 	~LLRequestServerAppearanceUpdateOnDestroy();
 
 	/* virtual */ void fire(const LLUUID& item_id) override {}
diff --git a/indra/newview/llavatarpropertiesprocessor.h b/indra/newview/llavatarpropertiesprocessor.h
index 0587965a6e407427f28660ea45ae8bef6cef1827..8b80f2e30dfc8ab0fac4de7af3eaab13b0a4dd1b 100644
--- a/indra/newview/llavatarpropertiesprocessor.h
+++ b/indra/newview/llavatarpropertiesprocessor.h
@@ -190,7 +190,7 @@ struct LLAvatarInterests
 class LLAvatarPropertiesObserver
 {
 public:
-	virtual ~LLAvatarPropertiesObserver() {}
+	virtual ~LLAvatarPropertiesObserver() = default;
 	virtual void processProperties(void* data, EAvatarProcessorType type) = 0;
 };
 
diff --git a/indra/newview/llblocklist.h b/indra/newview/llblocklist.h
index 9800d52ba574279530a30cf009839218dde2cd29..e0ceaa31295e1df8248d9620bd1c1a8682c51cb0 100644
--- a/indra/newview/llblocklist.h
+++ b/indra/newview/llblocklist.h
@@ -48,7 +48,7 @@ class LLBlockList final : public LLFlatListViewEx, public LLMuteListObserver
 public:
 	struct Params : public LLInitParam::Block<Params, LLFlatListViewEx::Params>
 	{
-		Params(){};
+		Params() = default;
 	};
 
 	LLBlockList(const Params& p);
@@ -112,8 +112,8 @@ class LLBlockListItemComparator : public LLFlatListView::ItemComparator
 	LOG_CLASS(LLBlockListItemComparator);
 
 public:
-	LLBlockListItemComparator() {};
-	virtual ~LLBlockListItemComparator() {};
+	LLBlockListItemComparator() = default;
+	virtual ~LLBlockListItemComparator() = default;
 
 	bool compare(const LLPanel* item1, const LLPanel* item2) const override;
 
@@ -131,8 +131,8 @@ class LLBlockListNameComparator : public LLBlockListItemComparator
 	LOG_CLASS(LLBlockListNameComparator);
 
 public:
-	LLBlockListNameComparator() {};
-	virtual ~LLBlockListNameComparator() {};
+	LLBlockListNameComparator() = default;
+	virtual ~LLBlockListNameComparator() = default;
 
 protected:
 
@@ -148,8 +148,8 @@ class LLBlockListNameTypeComparator : public LLBlockListItemComparator
 	LOG_CLASS(LLBlockListNameTypeComparator);
 
 public:
-	LLBlockListNameTypeComparator() {};
-	virtual ~LLBlockListNameTypeComparator() {};
+	LLBlockListNameTypeComparator() = default;
+	virtual ~LLBlockListNameTypeComparator() = default;
 
 protected:
 
diff --git a/indra/newview/llcallingcard.h b/indra/newview/llcallingcard.h
index a8f8a7f004e14d103c65c58c1a421d81d5cc4884..09c440c2761ff26d4a07b17a0690e642bd033c4e 100644
--- a/indra/newview/llcallingcard.h
+++ b/indra/newview/llcallingcard.h
@@ -54,7 +54,7 @@ public:
 		POWERS = 8,
 		ALL = 0xffffffff
 	};
-	virtual ~LLFriendObserver() {}
+	virtual ~LLFriendObserver() = default;
 	virtual void changed(U32 mask) = 0;
 };
 
@@ -71,7 +71,7 @@ struct LLBuddyInfo
 class LLRelationshipFunctor
 {
 public:
-	virtual ~LLRelationshipFunctor() {}
+	virtual ~LLRelationshipFunctor() = default;
 	virtual bool operator()(const LLUUID& buddy_id, LLRelationship* buddy) = 0;
 };
 	
@@ -209,8 +209,8 @@ private:
 class LLCollectProxyBuddies : public LLRelationshipFunctor
 {
 public:
-	LLCollectProxyBuddies() {}
-	virtual ~LLCollectProxyBuddies() {}
+	LLCollectProxyBuddies() = default;
+	virtual ~LLCollectProxyBuddies() = default;
 	bool operator()(const LLUUID& buddy_id, LLRelationship* buddy) override;
 	typedef std::set<LLUUID> buddy_list_t;
 	buddy_list_t mProxy;
@@ -220,8 +220,8 @@ public:
 class LLCollectMappableBuddies : public LLRelationshipFunctor
 {
 public:
-	LLCollectMappableBuddies() {}
-	virtual ~LLCollectMappableBuddies() {}
+	LLCollectMappableBuddies() = default;
+	virtual ~LLCollectMappableBuddies() = default;
 	bool operator()(const LLUUID& buddy_id, LLRelationship* buddy) override;
 	typedef std::map<LLUUID, std::string> buddy_map_t;
 	buddy_map_t mMappable;
diff --git a/indra/newview/llchannelmanager.h b/indra/newview/llchannelmanager.h
index 72d03a330262e3493679c691187b25d0ffa8b631..c03b24ed9906a8e3e1e74af0a7074639ae5ea4ea 100644
--- a/indra/newview/llchannelmanager.h
+++ b/indra/newview/llchannelmanager.h
@@ -52,7 +52,7 @@ public:
 		LLUUID							id;
 		LLHandle<LLScreenChannelBase>	channel;
 
-		ChannelElem() { }
+		ChannelElem() = default;
 
 		ChannelElem(const ChannelElem &elem)
 		{
diff --git a/indra/newview/llchatbar.cpp b/indra/newview/llchatbar.cpp
index 85e13de52d692245da3000ea3547eb4f3a211951..49f80ff6d36c95ad1ab40a43510e9e56158d46fc 100644
--- a/indra/newview/llchatbar.cpp
+++ b/indra/newview/llchatbar.cpp
@@ -51,7 +51,7 @@ class LLChatBarGestureObserver : public LLGestureManagerObserver
 {
 public:
 	LLChatBarGestureObserver(LLChatBar* chat_barp) : mChatBar(chat_barp){}
-	virtual ~LLChatBarGestureObserver() {}
+	virtual ~LLChatBarGestureObserver() = default;
 	void changed() override { mChatBar->refreshGestures(); }
 private:
 	LLChatBar* mChatBar;
diff --git a/indra/newview/llchatitemscontainerctrl.h b/indra/newview/llchatitemscontainerctrl.h
index f0a1c472a333878d404827941e34c6b7e1759164..0e170bdbf9bf1afafd561c2bf10c194f66d837c0 100644
--- a/indra/newview/llchatitemscontainerctrl.h
+++ b/indra/newview/llchatitemscontainerctrl.h
@@ -52,7 +52,7 @@ protected:
 // [/RLVa:KB]
 	{};
 public:
-	~LLFloaterIMNearbyChatToastPanel(){}
+	~LLFloaterIMNearbyChatToastPanel() = default;
 	
 	static LLFloaterIMNearbyChatToastPanel* createInstance();
 
diff --git a/indra/newview/llcofwearables.h b/indra/newview/llcofwearables.h
index e10e51729c671c4b3b7a5126b5f967297070aa49..5a9670671e1cc0b047f671411aac8b7cfe8a9a6c 100644
--- a/indra/newview/llcofwearables.h
+++ b/indra/newview/llcofwearables.h
@@ -51,8 +51,8 @@ public:
 	class LLCOFCallbacks
 	{
 	public:
-		LLCOFCallbacks() {};
-		virtual ~LLCOFCallbacks() {};
+		LLCOFCallbacks() = default;
+		virtual ~LLCOFCallbacks() = default;
 		
 		typedef std::function<void ()> cof_callback_t;
 
diff --git a/indra/newview/llcommandlineparser.cpp b/indra/newview/llcommandlineparser.cpp
index 46525448238bd46627da165a1fb6493b0eed6b49..ec6c5021efb96ae1b960f74fc8ee91cbb3ad0b88 100644
--- a/indra/newview/llcommandlineparser.cpp
+++ b/indra/newview/llcommandlineparser.cpp
@@ -108,7 +108,7 @@ public:
         mLastOption(false)
         {}
       
-    virtual ~LLCLPValue() {};
+    virtual ~LLCLPValue() = default;
 
     void setMinTokens(unsigned c) 
     {
diff --git a/indra/newview/llconversationlog.cpp b/indra/newview/llconversationlog.cpp
index 57dc3f5e98bcb94c051b1b475538fb96e4eed0f6..6e2cb62bf8d6370e03716fbba9319e98894b2f7f 100644
--- a/indra/newview/llconversationlog.cpp
+++ b/indra/newview/llconversationlog.cpp
@@ -165,8 +165,8 @@ void LLConversation::setListenIMFloaterOpened()
 class LLConversationLogFriendObserver : public LLFriendObserver
 {
 public:
-	LLConversationLogFriendObserver() {}
-	virtual ~LLConversationLogFriendObserver() {}
+	LLConversationLogFriendObserver() = default;
+	virtual ~LLConversationLogFriendObserver() = default;
 	void changed(U32 mask) override;
 };
 
diff --git a/indra/newview/llconversationlog.h b/indra/newview/llconversationlog.h
index 3e62430a15acc6e294b44add052af3f72564d5f5..89e8c2dd2ee05e680c72db3c4ad22c4eda304a0b 100644
--- a/indra/newview/llconversationlog.h
+++ b/indra/newview/llconversationlog.h
@@ -214,7 +214,7 @@ public:
 			CHANGED_OfflineIMs = 3
 		};
 
-	virtual ~LLConversationLogObserver(){}
+	virtual ~LLConversationLogObserver() = default;
 	virtual void changed() = 0;
 	virtual void changed(const LLUUID& session_id, U32 mask){};
 };
diff --git a/indra/newview/llconversationloglist.h b/indra/newview/llconversationloglist.h
index 8c1a04e744d93ae6302626319ea90daed8e73565..eb3acf3e3d1ade164bd9962e8e605d2770a594cf 100644
--- a/indra/newview/llconversationloglist.h
+++ b/indra/newview/llconversationloglist.h
@@ -51,7 +51,7 @@ public:
 
 	struct Params : public LLInitParam::Block<Params, LLFlatListViewEx::Params>
 	{
-		Params(){};
+		Params() = default;
 	};
 
 	LLConversationLogList(const Params& p);
@@ -114,8 +114,8 @@ class LLConversationLogListItemComparator : public LLFlatListView::ItemComparato
 	LOG_CLASS(LLConversationLogListItemComparator);
 
 public:
-	LLConversationLogListItemComparator() {};
-	virtual ~LLConversationLogListItemComparator() {};
+	LLConversationLogListItemComparator() = default;
+	virtual ~LLConversationLogListItemComparator() = default;
 
 	bool compare(const LLPanel* item1, const LLPanel* item2) const override;
 
@@ -129,8 +129,8 @@ class LLConversationLogListNameComparator : public LLConversationLogListItemComp
 	LOG_CLASS(LLConversationLogListNameComparator);
 
 public:
-	LLConversationLogListNameComparator() {};
-	virtual ~LLConversationLogListNameComparator() {};
+	LLConversationLogListNameComparator() = default;
+	virtual ~LLConversationLogListNameComparator() = default;
 
 protected:
 
@@ -142,8 +142,8 @@ class LLConversationLogListDateComparator : public LLConversationLogListItemComp
 	LOG_CLASS(LLConversationLogListDateComparator);
 
 public:
-	LLConversationLogListDateComparator() {};
-	virtual ~LLConversationLogListDateComparator() {};
+	LLConversationLogListDateComparator() = default;
+	virtual ~LLConversationLogListDateComparator() = default;
 
 protected:
 
diff --git a/indra/newview/llconversationmodel.h b/indra/newview/llconversationmodel.h
index b9dd0db1f73949a91ff935db13eeecd2ae9417fc..b7c624acfd419c230ba48ecab1ca432e4771a3de 100644
--- a/indra/newview/llconversationmodel.h
+++ b/indra/newview/llconversationmodel.h
@@ -244,7 +244,7 @@ public:
 	static constexpr U32 SO_DEFAULT = (SO_SESSION_TYPE << 16) | (SO_DATE);
 	
 	LLConversationFilter() { mEmpty.clear(); }
-	~LLConversationFilter() {}
+	~LLConversationFilter() = default;
 		
 	bool 				check(const LLFolderViewModelItem* item) override { return true; }
 	bool				checkFolder(const LLFolderViewModelItem* folder) const override { return true; }
diff --git a/indra/newview/lldesktopnotificationsnope.h b/indra/newview/lldesktopnotificationsnope.h
index 38858c2133779e68016e50e683949db591f4aa60..b2c0fbc558880162a86620c1e794721d5c54d155 100644
--- a/indra/newview/lldesktopnotificationsnope.h
+++ b/indra/newview/lldesktopnotificationsnope.h
@@ -39,7 +39,7 @@ public:
 	void sendNotification(const std::string& title, const std::string& body, bool play_sound) override;
     bool isImplemented() override { return false; }
 
-    LLDesktopNotificationsNope() {}
+    LLDesktopNotificationsNope() = default;
 };
 
 #endif // LL_DESKTOPNOTIFICATIONS_NOPE_H
diff --git a/indra/newview/lldrawpoolbump.h b/indra/newview/lldrawpoolbump.h
index e6a95eee0fe275177d8645f35a28d43a13c3f176..5574e6f4defefdf55b1fc0b6893a29ae1870ed0b 100644
--- a/indra/newview/lldrawpoolbump.h
+++ b/indra/newview/lldrawpoolbump.h
@@ -138,7 +138,7 @@ struct LLBumpImageEntry;
 class LLBumpImageList
 {
 public:
-	LLBumpImageList() {}
+	LLBumpImageList() = default;
 	~LLBumpImageList();
 
 	void		init();
diff --git a/indra/newview/lldroptarget.h b/indra/newview/lldroptarget.h
index d97763bb964dbf99e2db7c458cf65495a4e19b88..3ec072b6d38175b65f68e095c768aa742847d76b 100644
--- a/indra/newview/lldroptarget.h
+++ b/indra/newview/lldroptarget.h
@@ -45,7 +45,7 @@ public:
 	};
 	
 	LLDropTarget(const Params&);
-	~LLDropTarget() {};
+	~LLDropTarget() = default;
 	
 	void doDrop(EDragAndDropType cargo_type, void* cargo_data);
 	
diff --git a/indra/newview/llenvmanager.h b/indra/newview/llenvmanager.h
index 2a59411b34fce32487fb3192b9f10f64a516b572..d981a86adbf6fcdfd09523389b68178674883b4d 100644
--- a/indra/newview/llenvmanager.h
+++ b/indra/newview/llenvmanager.h
@@ -145,7 +145,7 @@ public:
 		mSkyMap(std::move(skyMap)),
 		mDayTime(dayTime)
 	{}
-	~LLEnvironmentSettings() {}
+	~LLEnvironmentSettings() = default;
 
 	void saveParams(const LLSD& dayCycle, const LLSD& skyMap, const LLSD& waterParams, F64 dayTime)
 	{
diff --git a/indra/newview/lleventnotifier.h b/indra/newview/lleventnotifier.h
index 408f96f2adf08fbc97b5016e326fd2eb87500ae8..68c110840cc4e3094faedd09b5207cad9f38e38c 100644
--- a/indra/newview/lleventnotifier.h
+++ b/indra/newview/lleventnotifier.h
@@ -50,7 +50,7 @@ typedef struct event_st{
 	U32 flags = 0;
 	event_st(U32 id, F64 epoch, std::string date_str, std::string name)
 		: eventId(id), eventEpoch(epoch), eventDateStr(std::move(date_str)), eventName(std::move(name)){}
-	event_st(){}
+	event_st() = default;
 } LLEventStruct;
 
 class LLEventNotifier
diff --git a/indra/newview/llfloaterconversationlog.h b/indra/newview/llfloaterconversationlog.h
index e6613a3d8578556b3cfdd4b1a89285ce9126d269..75cc77b75ecea4dcbe7b8e7d6950faef11f3f1d1 100644
--- a/indra/newview/llfloaterconversationlog.h
+++ b/indra/newview/llfloaterconversationlog.h
@@ -35,7 +35,7 @@ class LLFloaterConversationLog final : public LLFloater
 public:
 
 	LLFloaterConversationLog(const LLSD& key);
-	virtual ~LLFloaterConversationLog(){};
+	virtual ~LLFloaterConversationLog() = default;
 
 	BOOL postBuild() override;
 
diff --git a/indra/newview/llfloaterdisplayname.cpp b/indra/newview/llfloaterdisplayname.cpp
index c6b1f21631bba7896dd350d07709a9a0c2ee8df8..6c2ce79e73a1b1fc0c1c901e7a5285c961817913 100644
--- a/indra/newview/llfloaterdisplayname.cpp
+++ b/indra/newview/llfloaterdisplayname.cpp
@@ -44,7 +44,7 @@ class LLFloaterDisplayName final : public LLFloater
 {
 public:
 	LLFloaterDisplayName(const LLSD& key);
-	virtual ~LLFloaterDisplayName() { }
+	virtual ~LLFloaterDisplayName() = default;
 	/*virtual*/	BOOL	postBuild() override;
 	void onSave();
 	void onReset();
diff --git a/indra/newview/llfloatermessagelog.h b/indra/newview/llfloatermessagelog.h
index 973989fe0ce032b9e8ca934dc8c14f52806b2a1f..a1f6edcf96b3fbd6d54059787aca85f30e33b7c6 100644
--- a/indra/newview/llfloatermessagelog.h
+++ b/indra/newview/llfloatermessagelog.h
@@ -43,7 +43,7 @@ class LLMessageLogFilter
 {
 public:
     LLMessageLogFilter(const std::string& filter);
-	~LLMessageLogFilter() {}
+	~LLMessageLogFilter() = default;
 	
 	void set(const std::string& filter);
 	bool empty() const { return mPositiveNames.empty() && mNegativeNames.empty(); }
@@ -153,7 +153,7 @@ protected:
 	{
 	public:
 		LLMessageLogNetMan(LLFloaterMessageLog* parent);
-		~LLMessageLogNetMan() {}
+		~LLMessageLogNetMan() = default;
 		
 	private:
 		BOOL tick() override;
diff --git a/indra/newview/llfloaterpreference.cpp b/indra/newview/llfloaterpreference.cpp
index a2d9bc4df5f889fb6c9c217c867499ade6dedbf0..943790a901dbbc01fa585851ae47f6a0a5fa02aa 100644
--- a/indra/newview/llfloaterpreference.cpp
+++ b/indra/newview/llfloaterpreference.cpp
@@ -2253,7 +2253,7 @@ public:
 		mEventTimer.stop();
 	}
 
-	virtual ~Updater(){}
+	virtual ~Updater() = default;
 
 	void update(const LLSD& new_value)
 	{
diff --git a/indra/newview/llfloateruipreview.cpp b/indra/newview/llfloateruipreview.cpp
index 8963ed2c1925cd8879d4240b2c401bff95676632..5b6efd5f647056e5c7395d365cfadf3e23b530bf 100644
--- a/indra/newview/llfloateruipreview.cpp
+++ b/indra/newview/llfloateruipreview.cpp
@@ -105,7 +105,7 @@ class LLOverlapPanel final : public LLPanel
 public:
 	struct Params : public LLInitParam::Block<Params, LLPanel::Params>
 	{
-		Params() {}
+		Params() = default;
 	};
 	LLOverlapPanel(Params p = Params()) : LLPanel(p),
 		mLastClickedElement(nullptr),
diff --git a/indra/newview/llfloaterworldmap.cpp b/indra/newview/llfloaterworldmap.cpp
index aa6164920404f5bdaa1ec82410efa8d35397c4e5..8bd01f7c40cdf403772051aacbedb9d0bfa7792a 100644
--- a/indra/newview/llfloaterworldmap.cpp
+++ b/indra/newview/llfloaterworldmap.cpp
@@ -198,8 +198,8 @@ LLMapTrackAvatarHandler gMapTrackAvatar;
 class LLMapInventoryObserver : public LLInventoryObserver
 {
 public:
-	LLMapInventoryObserver() {}
-	virtual ~LLMapInventoryObserver() {}
+	LLMapInventoryObserver() = default;
+	virtual ~LLMapInventoryObserver() = default;
 	void changed(U32 mask) override;
 };
 
@@ -216,8 +216,8 @@ void LLMapInventoryObserver::changed(U32 mask)
 class LLMapFriendObserver : public LLFriendObserver
 {
 public:
-	LLMapFriendObserver() {}
-	virtual ~LLMapFriendObserver() {}
+	LLMapFriendObserver() = default;
+	virtual ~LLMapFriendObserver() = default;
 	void changed(U32 mask) override;
 };
 
diff --git a/indra/newview/llfollowcam.cpp b/indra/newview/llfollowcam.cpp
index 10c40f7bf965c42a46fffc3ea035b789f937fd4e..1d2d136e46a92dbb9afe3fc17177cb41ff43b10e 100644
--- a/indra/newview/llfollowcam.cpp
+++ b/indra/newview/llfollowcam.cpp
@@ -132,8 +132,6 @@ LLFollowCamParams::LLFollowCamParams()
 
 }
 
-LLFollowCamParams::~LLFollowCamParams() { }
-
 //---------------------------------------------------------
 // buncho set methods
 //---------------------------------------------------------
diff --git a/indra/newview/llfollowcam.h b/indra/newview/llfollowcam.h
index 13c85f0f23a63fb28b86f6e3ca6d8d21bc67aeb8..a26175700af89141a48cc8041cde41138383a4b6 100644
--- a/indra/newview/llfollowcam.h
+++ b/indra/newview/llfollowcam.h
@@ -51,7 +51,7 @@ class LLFollowCamParams
 {
 public:
 	LLFollowCamParams();
-	virtual ~LLFollowCamParams();
+	virtual ~LLFollowCamParams() = default;
 	
 	//--------------------------------------
 	// setty setty set set
diff --git a/indra/newview/llfriendcard.cpp b/indra/newview/llfriendcard.cpp
index 03145584549bb4678eeb56d98d3020798627947a..93e6e025c12eaf5d27585b79e00b0e1b2a53d6bf 100644
--- a/indra/newview/llfriendcard.cpp
+++ b/indra/newview/llfriendcard.cpp
@@ -107,7 +107,7 @@ class LLFindAgentCallingCard : public LLInventoryCollectFunctor
 {
 public:
 	LLFindAgentCallingCard() : mIsAgentCallingCardFound(false) {}
-	virtual ~LLFindAgentCallingCard() {}
+	virtual ~LLFindAgentCallingCard() = default;
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override;
 	bool isAgentCallingCardFound() const { return mIsAgentCallingCardFound; }
 
diff --git a/indra/newview/llgesturemgr.h b/indra/newview/llgesturemgr.h
index 1a7db255ebd19346dcd24267428929642e1dc1ee..cac11ee2bdbd8eb796b628da7cac7edf4fe5eb9d 100644
--- a/indra/newview/llgesturemgr.h
+++ b/indra/newview/llgesturemgr.h
@@ -41,7 +41,7 @@ class LLVFS;
 class LLGestureManagerObserver
 {
 public:
-	virtual ~LLGestureManagerObserver() { };
+	virtual ~LLGestureManagerObserver() = default;
 	virtual void changed() = 0;
 };
 
diff --git a/indra/newview/llgrouplist.cpp b/indra/newview/llgrouplist.cpp
index 0a7cb13403807b9cdf913931e262fb147ce0ca41..e513c7337a7b7a715bba5e820ce5a3005b88b84a 100644
--- a/indra/newview/llgrouplist.cpp
+++ b/indra/newview/llgrouplist.cpp
@@ -53,7 +53,7 @@ S32 LLGroupListItem::sIconWidth = 0;
 class LLGroupComparator : public LLFlatListView::ItemComparator
 {
 public:
-	LLGroupComparator() {};
+	LLGroupComparator() = default;
 
 	/** Returns true if item1 < item2, false otherwise */
 	/*virtual*/ bool compare(const LLPanel* item1, const LLPanel* item2) const override
diff --git a/indra/newview/llgrouplist.h b/indra/newview/llgrouplist.h
index 7f95979e3485f5ac370240e5f88f96ab37e7b44a..46821f7d3d5fa9fa9b8fec86d49c750fa1195365 100644
--- a/indra/newview/llgrouplist.h
+++ b/indra/newview/llgrouplist.h
@@ -50,7 +50,7 @@ class LLGroupList final : public LLFlatListViewEx, public LLOldEvents::LLSimpleL
 public:
 	struct Params : public LLInitParam::Block<Params, LLFlatListViewEx::Params>
 	{
-		Params(){};
+		Params() = default;
 	};
 
 	LLGroupList(const Params& p);
diff --git a/indra/newview/llgroupmgr.h b/indra/newview/llgroupmgr.h
index ff14e82c1d73ec09a0191aa753329b1bba2ca021..a016a4920026476d83a8508a3541fe6477f568ab 100644
--- a/indra/newview/llgroupmgr.h
+++ b/indra/newview/llgroupmgr.h
@@ -56,7 +56,7 @@ class LLGroupMgrObserver
 public:
 	LLGroupMgrObserver(const LLUUID& id) : mID(id){};
 	LLGroupMgrObserver() : mID(LLUUID::null){};
-	virtual ~LLGroupMgrObserver(){};
+	virtual ~LLGroupMgrObserver() = default;
 	virtual void changed(LLGroupChange gc) = 0;
 	const LLUUID& getID() const { return mID; }
 
@@ -67,7 +67,7 @@ protected:
 class LLParticularGroupObserver
 {
 public:
-	virtual ~LLParticularGroupObserver(){}
+	virtual ~LLParticularGroupObserver() = default;
 	virtual void changed(const LLUUID& group_id, LLGroupChange gc) = 0;
 };
 
diff --git a/indra/newview/llhttpretrypolicy.h b/indra/newview/llhttpretrypolicy.h
index 7e36e3905cdd257f2ccd64e0d8142b48802e65e8..3b2234fbaf38e13ac4a6d42805d3a5e038cb9099 100644
--- a/indra/newview/llhttpretrypolicy.h
+++ b/indra/newview/llhttpretrypolicy.h
@@ -41,9 +41,9 @@
 class LLHTTPRetryPolicy: public LLThreadSafeRefCount
 {
 public:
-	LLHTTPRetryPolicy() {}
+	LLHTTPRetryPolicy() = default;
 
-	virtual ~LLHTTPRetryPolicy() {}
+	virtual ~LLHTTPRetryPolicy() = default;
 	// Call after a sucess to reset retry state.
 
 	virtual void onSuccess() = 0;
diff --git a/indra/newview/llimview.h b/indra/newview/llimview.h
index 0f44e3e6132a83d71c26106e63f28f968cca66d0..fc8f41c0554bea4d448b879ebdd9efd3c134a8f0 100644
--- a/indra/newview/llimview.h
+++ b/indra/newview/llimview.h
@@ -49,7 +49,7 @@ class LLSessionTimeoutTimer : public LLEventTimer
 {
 public:
 	LLSessionTimeoutTimer(const LLUUID& session_id, F32 period) : LLEventTimer(period), mSessionId(session_id) {}
-	virtual ~LLSessionTimeoutTimer() {};
+	virtual ~LLSessionTimeoutTimer() = default;
 	/* virtual */ BOOL tick() override;
 
 private:
@@ -302,7 +302,7 @@ private:
 class LLIMSessionObserver
 {
 public:
-	virtual ~LLIMSessionObserver() {}
+	virtual ~LLIMSessionObserver() = default;
 	virtual void sessionAdded(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id, BOOL has_offline_msg) = 0;
     virtual void sessionActivated(const LLUUID& session_id, const std::string& name, const LLUUID& other_participant_id) = 0;
 	virtual void sessionVoiceOrIMStarted(const LLUUID& session_id) = 0;
diff --git a/indra/newview/llinspectremoteobject.cpp b/indra/newview/llinspectremoteobject.cpp
index 3e7a006d1addff861e9cf83c63cc50d4683d0690..0d73e25e316d55e3ed462f5ed2027eff830f6964 100644
--- a/indra/newview/llinspectremoteobject.cpp
+++ b/indra/newview/llinspectremoteobject.cpp
@@ -53,7 +53,7 @@ class LLInspectRemoteObject final : public LLInspect
 	
 public:
 	LLInspectRemoteObject(const LLSD& object_id);
-	virtual ~LLInspectRemoteObject() {};
+	virtual ~LLInspectRemoteObject() = default;
 
 	/*virtual*/ BOOL postBuild(void) override;
 	/*virtual*/ void onOpen(const LLSD& avatar_id) override;
diff --git a/indra/newview/llinventorybridge.cpp b/indra/newview/llinventorybridge.cpp
index 5a3645a66aa883c8605f1937934206fc66291f7c..fa376acdd1db6bff4c4c1ca68a9079fb10daa8c2 100644
--- a/indra/newview/llinventorybridge.cpp
+++ b/indra/newview/llinventorybridge.cpp
@@ -144,7 +144,7 @@ class LLRightClickInventoryFetchDescendentsObserver : public LLInventoryFetchDes
 {
 public:
 	LLRightClickInventoryFetchDescendentsObserver(const uuid_vec_t& ids) : LLInventoryFetchDescendentsObserver(ids) {}
-	~LLRightClickInventoryFetchDescendentsObserver() {}
+	~LLRightClickInventoryFetchDescendentsObserver() = default;
 	virtual void execute(bool clear_observer = false);
 
     void done() override
@@ -158,7 +158,7 @@ class LLRightClickInventoryFetchObserver : public LLInventoryFetchItemsObserver
 {
 public:
 	LLRightClickInventoryFetchObserver(const uuid_vec_t& ids) : LLInventoryFetchItemsObserver(ids) { };
-	~LLRightClickInventoryFetchObserver() {}
+	~LLRightClickInventoryFetchObserver() = default;
 	void execute(bool clear_observer = false)
 	{
 		if (clear_observer)
@@ -3129,7 +3129,7 @@ class LLInventoryCopyAndWearObserver : public LLInventoryObserver
 public:
 	LLInventoryCopyAndWearObserver(const LLUUID& cat_id, int count, bool folder_added=false, bool replace=false) :
 		mCatID(cat_id), mContentsCount(count), mFolderAdded(folder_added), mReplace(replace){}
-	virtual ~LLInventoryCopyAndWearObserver() {}
+	virtual ~LLInventoryCopyAndWearObserver() = default;
     void changed(U32 mask) override;
 
 protected:
@@ -7362,7 +7362,7 @@ public:
 		}
 		LLInvFVBridgeAction::doIt();
 	}
-	virtual ~LLCallingCardBridgeAction(){}
+	virtual ~LLCallingCardBridgeAction() = default;
 protected:
 	LLCallingCardBridgeAction(const LLUUID& id,LLInventoryModel* model) : LLInvFVBridgeAction(id,model) {}
 
@@ -7382,7 +7382,7 @@ public:
 		}
 		LLInvFVBridgeAction::doIt();
 	}
-	virtual ~LLNotecardBridgeAction(){}
+	virtual ~LLNotecardBridgeAction() = default;
 protected:
 	LLNotecardBridgeAction(const LLUUID& id,LLInventoryModel* model) : LLInvFVBridgeAction(id,model) {}
 };
@@ -7401,7 +7401,7 @@ public:
 		}
 		LLInvFVBridgeAction::doIt();		
 	}
-	virtual ~LLGestureBridgeAction(){}
+	virtual ~LLGestureBridgeAction() = default;
 protected:
 	LLGestureBridgeAction(const LLUUID& id,LLInventoryModel* model) : LLInvFVBridgeAction(id,model) {}
 };
diff --git a/indra/newview/llinventorybridge.h b/indra/newview/llinventorybridge.h
index f58a7d63ad5dfd7af17084a8e633376e94e084c9..f51d1ed2bc3e70046db03971990504784884c46f 100644
--- a/indra/newview/llinventorybridge.h
+++ b/indra/newview/llinventorybridge.h
@@ -73,7 +73,7 @@ public:
 									   LLFolderView* root,
 									   const LLUUID& uuid,
 									   U32 flags = 0x00);
-	virtual ~LLInvFVBridge() {}
+	virtual ~LLInvFVBridge() = default;
 
 	bool canShare() const;
 	bool canListOnMarketplace() const;
@@ -209,8 +209,8 @@ protected:
 class LLInventoryFolderViewModelBuilder
 {
 public:
- 	LLInventoryFolderViewModelBuilder() {}
- 	virtual ~LLInventoryFolderViewModelBuilder() {}
+ 	LLInventoryFolderViewModelBuilder() = default;
+ 	virtual ~LLInventoryFolderViewModelBuilder() = default;
 	virtual LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
 										LLAssetType::EType actual_asset_type,
 										LLInventoryType::EType inv_type,
@@ -632,7 +632,7 @@ public:
 	static void doAction(const LLUUID& uuid, LLInventoryModel* model);
 
 	virtual void doIt() {};
-	virtual ~LLInvFVBridgeAction() {} // need this because of warning on OSX
+	virtual ~LLInvFVBridgeAction() = default; // need this because of warning on OSX
 protected:
 	LLInvFVBridgeAction(const LLUUID& id, LLInventoryModel* model) :
 		mUUID(id), mModel(model) {}
@@ -669,7 +669,7 @@ public:
 class LLRecentInventoryBridgeBuilder : public LLInventoryFolderViewModelBuilder
 {
 public:
-	LLRecentInventoryBridgeBuilder() {}
+	LLRecentInventoryBridgeBuilder() = default;
 	// Overrides FolderBridge for Recent Inventory Panel.
 	// It use base functionality for bridges other than FolderBridge.
 	LLInvFVBridge* createBridge(LLAssetType::EType asset_type,
diff --git a/indra/newview/llinventoryfilter.h b/indra/newview/llinventoryfilter.h
index 3d1832720c406e94d9a6746b7483dca3e1208fd0..4701418bbb74b0a39e04b49cffd0606427e425ae 100644
--- a/indra/newview/llinventoryfilter.h
+++ b/indra/newview/llinventoryfilter.h
@@ -180,7 +180,7 @@ public:
 									
 	LLInventoryFilter(const Params& p = Params());
 	LLInventoryFilter(const LLInventoryFilter& other) { *this = other; }
-	virtual ~LLInventoryFilter() {}
+	virtual ~LLInventoryFilter() = default;
 
 	// +-------------------------------------------------------------------+
 	// + Parameters
diff --git a/indra/newview/llinventoryfunctions.h b/indra/newview/llinventoryfunctions.h
index 1a6ecbeb52488a1d90d317050c247914d7afc955..767ec8773b99cc1f69121852e118a548f9f475ac 100644
--- a/indra/newview/llinventoryfunctions.h
+++ b/indra/newview/llinventoryfunctions.h
@@ -110,7 +110,7 @@ S32 compute_stock_count(LLUUID cat_uuid, bool force_count = false);
 class LLInventoryCollectFunctor
 {
 public:
-	virtual ~LLInventoryCollectFunctor(){};
+	virtual ~LLInventoryCollectFunctor() = default;
 	virtual bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) = 0;
 
 	static bool itemTransferCommonlyAllowed(const LLInventoryItem* item);
@@ -127,7 +127,7 @@ class LLAssetIDMatches : public LLInventoryCollectFunctor
 {
 public:
 	LLAssetIDMatches(const LLUUID& asset_id) : mAssetID(asset_id) {}
-	virtual ~LLAssetIDMatches() {}
+	virtual ~LLAssetIDMatches() = default;
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override;
 	
 protected:
@@ -144,7 +144,7 @@ class LLLinkedItemIDMatches : public LLInventoryCollectFunctor
 {
 public:
 	LLLinkedItemIDMatches(const LLUUID& item_id) : mBaseItemID(item_id) {}
-	virtual ~LLLinkedItemIDMatches() {}
+	virtual ~LLLinkedItemIDMatches() = default;
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override;
 	
 protected:
@@ -162,7 +162,7 @@ class LLIsType : public LLInventoryCollectFunctor
 {
 public:
 	LLIsType(LLAssetType::EType type) : mType(type) {}
-	virtual ~LLIsType() {}
+	virtual ~LLIsType() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 protected:
@@ -179,7 +179,7 @@ class LLIsNotType : public LLInventoryCollectFunctor
 {
 public:
 	LLIsNotType(LLAssetType::EType type) : mType(type) {}
-	virtual ~LLIsNotType() {}
+	virtual ~LLIsNotType() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 protected:
@@ -198,7 +198,7 @@ class LLIsOfAssetType : public LLInventoryCollectFunctor
 {
 public:
 	LLIsOfAssetType(LLAssetType::EType type) : mType(type) {}
-	virtual ~LLIsOfAssetType() {}
+	virtual ~LLIsOfAssetType() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 protected:
@@ -270,7 +270,7 @@ class LLParticularBuddyCollector : public LLInventoryCollectFunctor
 {
 public:
 	LLParticularBuddyCollector(const LLUUID& id) : mBuddyID(id) {}
-	virtual ~LLParticularBuddyCollector() {}
+	virtual ~LLParticularBuddyCollector() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 protected:
@@ -398,7 +398,7 @@ class LLFindWearablesOfType : public LLInventoryCollectFunctor
 {
 public:
 	LLFindWearablesOfType(LLWearableType::EType type) : mWearableType(type) {}
-	virtual ~LLFindWearablesOfType() {}
+	virtual ~LLFindWearablesOfType() = default;
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override;
 	void setType(LLWearableType::EType type);
 
@@ -411,7 +411,7 @@ class LLFindActualWearablesOfType : public LLFindWearablesOfType
 {
 public:
 	LLFindActualWearablesOfType(LLWearableType::EType type) : LLFindWearablesOfType(type) {}
-	virtual ~LLFindActualWearablesOfType() {}
+	virtual ~LLFindActualWearablesOfType() = default;
 
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override
 	{
@@ -425,7 +425,7 @@ class LLIsTypeActual : public LLIsType
 {
 public:
 	LLIsTypeActual(LLAssetType::EType type) : LLIsType(type) {}
-	virtual ~LLIsTypeActual() {}
+	virtual ~LLIsTypeActual() = default;
 
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override
 	{
diff --git a/indra/newview/llinventorylistitem.h b/indra/newview/llinventorylistitem.h
index 558b2b95d3f4915581e41779f079c87caa615ad2..02195bd20e89526f0e5622996dabe7bfd685da57 100644
--- a/indra/newview/llinventorylistitem.h
+++ b/indra/newview/llinventorylistitem.h
@@ -155,7 +155,7 @@ public:
 	void setSeparatorVisible(bool visible) { mSeparatorVisible = visible; }
 	void resetHighlight() { mHovered = FALSE; }
 
-	virtual ~LLPanelInventoryListItemBase(){}
+	virtual ~LLPanelInventoryListItemBase() = default;
 
 protected:
 
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 8019e532720522615c058944d93dfaa23dba440e..92cc17dda5c6b212d919e7a9e927ea563e82de5d 100644
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -97,7 +97,7 @@ class LLCanCache : public LLInventoryCollectFunctor
 {
 public:
 	LLCanCache(LLInventoryModel* model) : mModel(model) {}
-	virtual ~LLCanCache() {}
+	virtual ~LLCanCache() = default;
 	bool operator()(LLInventoryCategory* cat, LLInventoryItem* item) override;
 protected:
 	LLInventoryModel* mModel;
@@ -796,7 +796,7 @@ bool LLInventoryModel::hasMatchingDirectDescendent(const LLUUID& cat_id,
 class LLAlwaysCollect : public LLInventoryCollectFunctor
 {
 public:
-	virtual ~LLAlwaysCollect() {}
+	virtual ~LLAlwaysCollect() = default;
 
 	bool operator()(LLInventoryCategory* cat,
 	                        LLInventoryItem* item) override
@@ -2688,7 +2688,7 @@ void LLInventoryModel::createCommonSystemCategories()
 
 struct LLUUIDAndName
 {
-	LLUUIDAndName() {}
+	LLUUIDAndName() = default;
 	LLUUIDAndName(const LLUUID& id, std::string name);
 	bool operator==(const LLUUIDAndName& rhs) const;
 	bool operator<(const LLUUIDAndName& rhs) const;
diff --git a/indra/newview/llinventoryobserver.h b/indra/newview/llinventoryobserver.h
index efaf4a2c9b8d7b5cf13f5d7238ef26b895c58156..b5e992a077306dde9cdd58fa8d996d45ef4ff13c 100644
--- a/indra/newview/llinventoryobserver.h
+++ b/indra/newview/llinventoryobserver.h
@@ -191,7 +191,7 @@ private:
 class LLInventoryAddedObserver : public LLInventoryObserver
 {
 public:
-	LLInventoryAddedObserver() {}
+	LLInventoryAddedObserver() = default;
 	/*virtual*/ void changed(U32 mask) override;
 
 protected:
@@ -231,7 +231,7 @@ protected:
 class LLInventoryCompletionObserver : public LLInventoryObserver
 {
 public:
-	LLInventoryCompletionObserver() {}
+	LLInventoryCompletionObserver() = default;
 	/*virtual*/ void changed(U32 mask) override;
 
 	void watchItem(const LLUUID& id);
@@ -255,7 +255,7 @@ class LLInventoryCategoriesObserver : public LLInventoryObserver
 public:
 	typedef std::function<void()> callback_t;
 
-	LLInventoryCategoriesObserver() {};
+	LLInventoryCategoriesObserver() = default;
 	void changed(U32 mask) override;
 
 	/**
diff --git a/indra/newview/llinventorypanel.cpp b/indra/newview/llinventorypanel.cpp
index e27eaeb9cfe2a52ed85de4c5095d4ab2c90632f9..5c9b12e14a8b3e545db21e14df682f533df3ef4c 100644
--- a/indra/newview/llinventorypanel.cpp
+++ b/indra/newview/llinventorypanel.cpp
@@ -81,7 +81,7 @@ class LLInventoryPanelObserver : public LLInventoryObserver
 {
 public:
 	LLInventoryPanelObserver(LLInventoryPanel* ip) : mIP(ip) {}
-	virtual ~LLInventoryPanelObserver() {}
+	virtual ~LLInventoryPanelObserver() = default;
 
 	void changed(U32 mask) override
 	{
diff --git a/indra/newview/lllocationhistory.h b/indra/newview/lllocationhistory.h
index 2c17bfcb60e555b7ea2d9f7d95c712cdafc8e013..e0c76098387125758a94f5b50c4156bf81c3a6df 100644
--- a/indra/newview/lllocationhistory.h
+++ b/indra/newview/lllocationhistory.h
@@ -41,7 +41,7 @@ enum ELocationType {
 class LLLocationHistoryItem {
 			
 public:
-	LLLocationHistoryItem(){}
+	LLLocationHistoryItem() = default;
 	LLLocationHistoryItem(std::string typed_location, 
 			LLVector3d global_position, std::string tooltip,ELocationType type ):
 		mGlobalPos(global_position),		
diff --git a/indra/newview/lllogchat.h b/indra/newview/lllogchat.h
index 109ebe7a7bdb4b107dfc6e229cc1ea64691c466e..3df460c0519e2703a8cbdc9400ffc875ffc4c696 100644
--- a/indra/newview/lllogchat.h
+++ b/indra/newview/lllogchat.h
@@ -153,7 +153,7 @@ class LLChatLogFormatter
 {
 public:
 	LLChatLogFormatter(LLSD im) : mIM(std::move(im)) {}
-	virtual ~LLChatLogFormatter() {};
+	virtual ~LLChatLogFormatter() = default;
 
 	friend std::ostream& operator<<(std::ostream& str, const LLChatLogFormatter& formatter)
 	{
@@ -194,8 +194,8 @@ public:
 	static bool parse(std::string& raw, LLSD& im, const LLSD& parse_params = LLSD());
 
 protected:
-	LLChatLogParser();
-	virtual ~LLChatLogParser() {};
+	LLChatLogParser() = default;
+	virtual ~LLChatLogParser() = default;
 };
 
 
diff --git a/indra/newview/lllogininstance.cpp b/indra/newview/lllogininstance.cpp
index ecca7ee97ff6fd35e0f0e3fec0c095efd98d2811..8c815b96c7d6d0c7cc5485cf12d6e49675cc6fd2 100644
--- a/indra/newview/lllogininstance.cpp
+++ b/indra/newview/lllogininstance.cpp
@@ -67,7 +67,7 @@ const F32 LOGIN_DNS_TIMEOUT_FACTOR = 0.9f; // make DNS wait shorter then retry t
 
 class LLLoginInstance::Disposable {
 public:
-	virtual ~Disposable() {}
+	virtual ~Disposable() = default;
 };
 
 static const char * const TOS_REPLY_PUMP = "lllogininstance_tos_callback";
diff --git a/indra/newview/llmarketplacefunctions.cpp b/indra/newview/llmarketplacefunctions.cpp
index 3b80c41e8fe3962f4fcd0510ac0c4eed9c49ec4b..68f8b1c72d8caeccdec4a9cc6247a4343dfe8e4c 100644
--- a/indra/newview/llmarketplacefunctions.cpp
+++ b/indra/newview/llmarketplacefunctions.cpp
@@ -601,8 +601,8 @@ void LLMarketplaceInventoryImporter::updateImport()
 class LLMarketplaceInventoryObserver : public LLInventoryObserver
 {
 public:
-	LLMarketplaceInventoryObserver() {}
-	virtual ~LLMarketplaceInventoryObserver() {}
+	LLMarketplaceInventoryObserver() = default;
+	virtual ~LLMarketplaceInventoryObserver() = default;
 	void changed(U32 mask) override;
 };
 
diff --git a/indra/newview/llmutelist.h b/indra/newview/llmutelist.h
index ae41a2f58839a503631b35428fd287fb48ea37d6..f98dd3adc29fecc7ab52aa6e389c0dd06d4abf6e 100644
--- a/indra/newview/llmutelist.h
+++ b/indra/newview/llmutelist.h
@@ -172,7 +172,7 @@ private:
 class LLMuteListObserver
 {
 public:
-	virtual ~LLMuteListObserver() { }
+	virtual ~LLMuteListObserver() = default;
 	virtual void onChange() = 0;
 	virtual void onChangeDetailed(const LLMute& ) { }
 };
diff --git a/indra/newview/llnotificationhandler.h b/indra/newview/llnotificationhandler.h
index ec5970a22a7452b85f7af3062002c29527637b61..73742505d8dadd85fb0615d20e1417e9c2a82833 100644
--- a/indra/newview/llnotificationhandler.h
+++ b/indra/newview/llnotificationhandler.h
@@ -66,7 +66,7 @@ namespace LLNotificationsUI
 class LLEventHandler
 {
 public:
-	virtual ~LLEventHandler() {};
+	virtual ~LLEventHandler() = default;
 
 protected:
 	virtual void onDeleteToast(LLToast* toast) {}
@@ -91,7 +91,7 @@ class LLNotificationHandler : public LLEventHandler, public LLNotificationChanne
 {
 public:
 	LLNotificationHandler(const std::string& name, const std::string& notification_type, const std::string& parentName);
-	virtual ~LLNotificationHandler() {};
+	virtual ~LLNotificationHandler() = default;
 
 	// base interface functions
 	void onAdd(LLNotificationPtr p) override { processNotification(p); }
@@ -106,14 +106,14 @@ class LLSystemNotificationHandler : public LLNotificationHandler
 {
 public:
 	LLSystemNotificationHandler(const std::string& name, const std::string& notification_type);
-	virtual ~LLSystemNotificationHandler() {};
+	virtual ~LLSystemNotificationHandler() = default;
 };
 
 class LLCommunicationNotificationHandler : public LLNotificationHandler
 {
 public:
 	LLCommunicationNotificationHandler(const std::string& name, const std::string& notification_type);
-	virtual ~LLCommunicationNotificationHandler() {};
+	virtual ~LLCommunicationNotificationHandler() = default;
 };
 
 /**
@@ -122,7 +122,7 @@ public:
 class LLChatHandler : public LLEventHandler
 {
 public:
-	virtual ~LLChatHandler() {};
+	virtual ~LLChatHandler() = default;
 
 	virtual void processChat(const LLChat& chat_msg, const LLSD &args)=0;
 };
@@ -269,7 +269,7 @@ class LLBrowserNotification : public LLSystemNotificationHandler
 {
 public:
 	LLBrowserNotification();
-	virtual ~LLBrowserNotification() {}
+	virtual ~LLBrowserNotification() = default;
 
 	bool processNotification(const LLNotificationPtr& p) override;
 
diff --git a/indra/newview/lloutfitgallery.h b/indra/newview/lloutfitgallery.h
index aadaf3fcb653b6f64de16b44d7c4cfd6dfb0e767..a4ab621bc912e247d1be1446a87c7a7b85499215 100644
--- a/indra/newview/lloutfitgallery.h
+++ b/indra/newview/lloutfitgallery.h
@@ -48,8 +48,8 @@ class LLOutfitGalleryContextMenu;
 class LLUpdateGalleryOnPhotoLinked : public LLInventoryCallback
 {
 public:
-    LLUpdateGalleryOnPhotoLinked(){}
-    virtual ~LLUpdateGalleryOnPhotoLinked(){}
+    LLUpdateGalleryOnPhotoLinked() = default;
+    virtual ~LLUpdateGalleryOnPhotoLinked() = default;
     /* virtual */ void fire(const LLUUID& inv_item_id) override;
 private:
 };
diff --git a/indra/newview/llpanelface.cpp b/indra/newview/llpanelface.cpp
index 9be65ddb5c527e2713e1b5c11628aec8933b826d..9695833d07eee42c2287791757a3d6eb13940bf3 100644
--- a/indra/newview/llpanelface.cpp
+++ b/indra/newview/llpanelface.cpp
@@ -2236,7 +2236,7 @@ void LLPanelFace::LLSelectedTEMaterial::getCurrentDiffuseAlphaMode(U8& diffuse_a
 	{
 		LLSelectedTEGetDiffuseAlphaMode() : _isAlpha(false) {}
 		LLSelectedTEGetDiffuseAlphaMode(bool diffuse_texture_has_alpha) : _isAlpha(diffuse_texture_has_alpha) {}
-		virtual ~LLSelectedTEGetDiffuseAlphaMode() {}
+		virtual ~LLSelectedTEGetDiffuseAlphaMode() = default;
 
 		U8 get(LLViewerObject* object, S32 face) override
 		{
diff --git a/indra/newview/llpanelface.h b/indra/newview/llpanelface.h
index 598adf5874bef7fbdb7a1ed0c17b6c184de90927..2bd087c48ded5f7f1babf71d2f9cf4dd0e05799f 100644
--- a/indra/newview/llpanelface.h
+++ b/indra/newview/llpanelface.h
@@ -64,7 +64,7 @@ class LLMaterialEditFunctor
 {
 public:
 	LLMaterialEditFunctor(const DataType& data) : _data(data) {}
-	virtual ~LLMaterialEditFunctor() {}
+	virtual ~LLMaterialEditFunctor() = default;
 	virtual void apply(LLMaterialPtr& material) { (material->*(MaterialEditFunc))(_data); }
 	DataType _data;
 };
@@ -75,7 +75,7 @@ template<
 class LLMaterialGetFunctor
 {
 public:
-	LLMaterialGetFunctor() {}
+	LLMaterialGetFunctor() = default;
 	virtual ~LLMaterialGetFunctor() = default;
 	virtual DataType get(LLMaterialPtr& material) { return (material->*(MaterialGetFunc)); }
 };
@@ -86,7 +86,7 @@ template<
 class LLTEGetFunctor
 {
 public:
-	LLTEGetFunctor() {}
+	LLTEGetFunctor() = default;
 	virtual ~LLTEGetFunctor() = default;
 	virtual DataType get(LLTextureEntry* entry) { return (entry*(TEGetFunc)); }
 };
diff --git a/indra/newview/llpanelgroupnotices.cpp b/indra/newview/llpanelgroupnotices.cpp
index 52a8cef99e45cd9e585d430259ec31f3e4421140..11cacb82a099981f9edf2a3e4fb7b18280e65864 100644
--- a/indra/newview/llpanelgroupnotices.cpp
+++ b/indra/newview/llpanelgroupnotices.cpp
@@ -87,7 +87,7 @@ public:
 		}
 	};
 	LLGroupDropTarget(const Params&);
-	~LLGroupDropTarget() {};
+	~LLGroupDropTarget() = default;
 
 	void doDrop(EDragAndDropType cargo_type, void* cargo_data);
 
diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp
index 8db75677e3e2dafd4075f218988895857ab0c376..046ba4c51c9466c012b93a8e425129bb1969e1ef 100644
--- a/indra/newview/llpanellandmarks.cpp
+++ b/indra/newview/llpanellandmarks.cpp
@@ -130,7 +130,7 @@ public:
 	LLLandmarksPanelObserver(LLLandmarksPanel* lp)
 	:	mLP(lp)
 	{}
-	virtual ~LLLandmarksPanelObserver() {}
+	virtual ~LLLandmarksPanelObserver() = default;
 	/*virtual*/ void changed(U32 mask) override;
 
 private:
diff --git a/indra/newview/llpanelonlinestatus.h b/indra/newview/llpanelonlinestatus.h
index 9c8aee73125e3328f0601dd4aaa5dc3d8922cf5b..c77673bb3eaf341b14766a5886d42b8e1dfcd236 100644
--- a/indra/newview/llpanelonlinestatus.h
+++ b/indra/newview/llpanelonlinestatus.h
@@ -40,7 +40,7 @@ private:
 	friend class LLToastPanel;
 
 	LLPanelOnlineStatus(const LLNotificationPtr& notification);
-	virtual ~LLPanelOnlineStatus() {}
+	virtual ~LLPanelOnlineStatus() = default;
 };
 
 #endif /* LL_PANELONLINESTATUS_H */
diff --git a/indra/newview/llpanelpeople.cpp b/indra/newview/llpanelpeople.cpp
index c43806eb5699a32da0ec7c446c4ab0f86e48c5d4..b652866b55326befaa58118786645f860b7c6ab7 100644
--- a/indra/newview/llpanelpeople.cpp
+++ b/indra/newview/llpanelpeople.cpp
@@ -95,8 +95,8 @@ extern S32 gMaxAgentGroups;
 class LLAvatarItemRecentComparator : public LLAvatarItemComparator
 {
 public:
-	LLAvatarItemRecentComparator() {};
-	virtual ~LLAvatarItemRecentComparator() {};
+	LLAvatarItemRecentComparator() = default;
+	virtual ~LLAvatarItemRecentComparator() = default;
 
 protected:
 	bool doCompare(const LLAvatarListItem* avatar_item1, const LLAvatarListItem* avatar_item2) const override
@@ -114,7 +114,7 @@ protected:
 class LLAvatarItemStatusComparator : public LLAvatarItemComparator
 {
 public:
-	LLAvatarItemStatusComparator() {};
+	LLAvatarItemStatusComparator() = default;
 
 protected:
 	/**
@@ -146,7 +146,7 @@ class LLAvatarItemDistanceComparator : public LLAvatarItemComparator
 {
 public:
 	typedef std::map < LLUUID, LLVector3d > id_to_pos_map_t;
-	LLAvatarItemDistanceComparator() {};
+	LLAvatarItemDistanceComparator() = default;
 
 	void updateAvatarsPositions(std::vector<LLVector3d>& positions, uuid_vec_t& uuids)
 	{
@@ -183,8 +183,8 @@ private:
 class LLAvatarItemRecentSpeakerComparator : public  LLAvatarItemNameComparator
 {
 public:
-	LLAvatarItemRecentSpeakerComparator() {};
-	virtual ~LLAvatarItemRecentSpeakerComparator() {};
+	LLAvatarItemRecentSpeakerComparator() = default;
+	virtual ~LLAvatarItemRecentSpeakerComparator() = default;
 
 protected:
 	bool doCompare(const LLAvatarListItem* item1, const LLAvatarListItem* item2) const override
diff --git a/indra/newview/llpanelradaralert.h b/indra/newview/llpanelradaralert.h
index 3b5e455736258cfe5a7a08b42715b0c0df1fa3f3..30b7750fb8c1a4ca58be05594bb3e9a478df5132 100644
--- a/indra/newview/llpanelradaralert.h
+++ b/indra/newview/llpanelradaralert.h
@@ -41,7 +41,7 @@ private:
 	friend class LLToastPanel;
 	
 	LLPanelRadarAlert(const LLNotificationPtr& notification);
-	virtual ~LLPanelRadarAlert() {}
+	virtual ~LLPanelRadarAlert() = default;
 };
 
 #endif // LL_PANELRADARALERT_H
diff --git a/indra/newview/llscreenchannel.h b/indra/newview/llscreenchannel.h
index 41730c9d3975614ce09cb9d2a47dfea0b024a2e5..1f4ca2610dd6fcf0dcc9c87dd958d98f173cc6d7 100644
--- a/indra/newview/llscreenchannel.h
+++ b/indra/newview/llscreenchannel.h
@@ -156,8 +156,8 @@ public:
 	class Matcher
 	{
 	public:
-		Matcher(){}
-		virtual ~Matcher() {}
+		Matcher() = default;
+		virtual ~Matcher() = default;
 		virtual bool matches(const LLNotificationPtr) const = 0;
 	};
 
diff --git a/indra/newview/llscriptfloater.h b/indra/newview/llscriptfloater.h
index 279c04930571ae5ab520df19e535f13b75885a2e..3f13e1f4091cd26709cfde8bcba35eb4deec3fd4 100644
--- a/indra/newview/llscriptfloater.h
+++ b/indra/newview/llscriptfloater.h
@@ -156,7 +156,7 @@ public:
 	 */
 	LLScriptFloater(const LLSD& key);
 
-	virtual ~LLScriptFloater(){};
+	virtual ~LLScriptFloater() = default;
 
 	/**
 	 * Toggle existing floater or create and show a new one.
diff --git a/indra/newview/llsearchcombobox.cpp b/indra/newview/llsearchcombobox.cpp
index 08a189f178a06dab417f3a2f548e42ce06a72195..7ce72b2580567f2236c6dfd8e0508d79cf889624 100644
--- a/indra/newview/llsearchcombobox.cpp
+++ b/indra/newview/llsearchcombobox.cpp
@@ -40,7 +40,7 @@ public:
 
 	virtual void buildSearchHistory();
 
-	virtual ~LLSearchHistoryBuilder(){}
+	virtual ~LLSearchHistoryBuilder() = default;
 
 protected:
 
diff --git a/indra/newview/llsecapi.h b/indra/newview/llsecapi.h
index ea78919e47c371908da546b834bd8ce7ddbd581b..362b90a68f564eb8222d9c006cacc2d51cc423df 100644
--- a/indra/newview/llsecapi.h
+++ b/indra/newview/llsecapi.h
@@ -63,10 +63,10 @@ struct LLProtectedDataException: public LLException
 class LLCredential  : public LLThreadSafeRefCount
 {
 public:
-	LLCredential() {}
+	LLCredential() = default;
     LLCredential(std::string grid) : mGrid(std::move(grid)) {}
 	
-	virtual ~LLCredential() {}
+	virtual ~LLCredential() = default;
 	
 	virtual void setCredentialData(const LLSD& identifier, const LLSD& authenticator) 
 	{ 
@@ -108,8 +108,8 @@ std::ostream& operator <<(std::ostream& s, const LLCredential& cred);
 class LLSecAPIHandler : public LLThreadSafeRefCount
 {
 public:
-	LLSecAPIHandler() {}
-	virtual ~LLSecAPIHandler() {}
+	LLSecAPIHandler() = default;
+	virtual ~LLSecAPIHandler() = default;
 	
 	// initialize the SecAPIHandler
 	virtual void init() {};
diff --git a/indra/newview/llsechandler_basic.h b/indra/newview/llsechandler_basic.h
index 4d382659d81f97845aa146674746aceb572870bd..33ee2b916166fd3ec462939d0859e25fa86fb52a 100644
--- a/indra/newview/llsechandler_basic.h
+++ b/indra/newview/llsechandler_basic.h
@@ -35,7 +35,7 @@ class LLSecAPIBasicCredential : public LLCredential
 {
 public:
 	LLSecAPIBasicCredential(const std::string& grid) : LLCredential(grid) {} 
-	virtual ~LLSecAPIBasicCredential() {}
+	virtual ~LLSecAPIBasicCredential() = default;
 
 	// return a value representing the user id, (could be guid, name, whatever)
 	std::string userID() const override;
diff --git a/indra/newview/llselectmgr.cpp b/indra/newview/llselectmgr.cpp
index 66e9a0690a0f22604c5da220426c1bc5aab9241f..c713539cd5563c50d637cf30ab454cd02aee61f8 100644
--- a/indra/newview/llselectmgr.cpp
+++ b/indra/newview/llselectmgr.cpp
@@ -4653,7 +4653,7 @@ void LLSelectMgr::sendDelink()
 
 	struct f : public LLSelectedObjectFunctor
 	{ //on delink, any modifyable object should
-		f() {}
+		f() = default;
 
 	    bool apply(LLViewerObject* object) override
 		{
diff --git a/indra/newview/llselectmgr.h b/indra/newview/llselectmgr.h
index 9f30f6548ee385d5eb38ac42828ddb70cdac8779..28fa23ea0191336cb460a155a9f3dbf84c0e040f 100644
--- a/indra/newview/llselectmgr.h
+++ b/indra/newview/llselectmgr.h
@@ -89,7 +89,7 @@ const S32 SELECT_MAX_TES = 32;
 // the operation was successful.
 struct LLSelectedObjectFunctor
 {
-	virtual ~LLSelectedObjectFunctor() {};
+	virtual ~LLSelectedObjectFunctor() = default;
 	virtual bool apply(LLViewerObject* object) = 0;
 };
 
@@ -99,25 +99,25 @@ struct LLSelectedObjectFunctor
 // the operation was successful.
 struct LLSelectedNodeFunctor
 {
-	virtual ~LLSelectedNodeFunctor() {};
+	virtual ~LLSelectedNodeFunctor() = default;
 	virtual bool apply(LLSelectNode* node) = 0;
 };
 
 struct LLSelectedTEFunctor
 {
-	virtual ~LLSelectedTEFunctor() {};
+	virtual ~LLSelectedTEFunctor() = default;
 	virtual bool apply(LLViewerObject* object, S32 face) = 0;
 };
 
 struct LLSelectedTEMaterialFunctor
 {
-	virtual ~LLSelectedTEMaterialFunctor() {};
+	virtual ~LLSelectedTEMaterialFunctor() = default;
 	virtual LLMaterialPtr apply(LLViewerObject* object, S32 face, LLTextureEntry* tep, LLMaterialPtr& current_material) = 0;
 };
 
 template <typename T> struct LLSelectedTEGetFunctor
 {
-	virtual ~LLSelectedTEGetFunctor() {};
+	virtual ~LLSelectedTEGetFunctor() = default;
 	virtual T get(LLViewerObject* object, S32 te) = 0;
 };
 
diff --git a/indra/newview/llspeakers.h b/indra/newview/llspeakers.h
index fd6676e7bc800d0fe6f91668af81a5e7634bb729..81f69ef7335ea7763e0f3b94cec5cdbb127c8783 100644
--- a/indra/newview/llspeakers.h
+++ b/indra/newview/llspeakers.h
@@ -59,7 +59,7 @@ public:
 
 
 	LLSpeaker(const LLUUID& id, const std::string& name = LLStringUtil::null, const ESpeakerType type = SPEAKER_AGENT);
-	~LLSpeaker() {};
+	~LLSpeaker() = default;
 	void lookupName();
 
 	void onNameCache(const LLUUID& id, const LLAvatarName& full_name);
diff --git a/indra/newview/llspeakingindicatormanager.h b/indra/newview/llspeakingindicatormanager.h
index e5afcd1cb7ade6f0bf2b4806b9949066f586147e..d4ccc5b7eed0e7edaa56c5aacaae8557a8939509 100644
--- a/indra/newview/llspeakingindicatormanager.h
+++ b/indra/newview/llspeakingindicatormanager.h
@@ -34,7 +34,7 @@ class SpeakingIndicatorManager;
 class LLSpeakingIndicator
 {
 public:
-	virtual ~LLSpeakingIndicator(){}
+	virtual ~LLSpeakingIndicator() = default;
 	virtual void switchIndicator(bool switch_on) = 0;
 
 private:
diff --git a/indra/newview/llsplitbutton.h b/indra/newview/llsplitbutton.h
index 66aeefed65653dbcb120b955f5351285853106d0..b4916e2dd6644bc5a484b33075fb60c38a45eb55 100644
--- a/indra/newview/llsplitbutton.h
+++ b/indra/newview/llsplitbutton.h
@@ -65,7 +65,7 @@ public:
 	};
 
 
-	virtual ~LLSplitButton() {};
+	virtual ~LLSplitButton() = default;
 
 	//Overridden
 	void	onFocusLost() override;
diff --git a/indra/newview/llstreaminfo.h b/indra/newview/llstreaminfo.h
index f1c121102e4ed370901f94ad89e65f28f34c0d37..e0f939a6d8290c9cfd315dd7794e0cc299b85fc0 100644
--- a/indra/newview/llstreaminfo.h
+++ b/indra/newview/llstreaminfo.h
@@ -38,7 +38,7 @@ class LLStreamInfo : LLEventTimer
 public:
 	LLStreamInfo();
 private:
-	~LLStreamInfo() {}
+	~LLStreamInfo() = default;
 	BOOL tick() override;
 };
 
diff --git a/indra/newview/llsurfacepatch.h b/indra/newview/llsurfacepatch.h
index 8c8f501dce6f9964b757e7bee67a8b20f049b568..6a263d8affc7eae126ce67d1831f5e0b77ed8a9d 100644
--- a/indra/newview/llsurfacepatch.h
+++ b/indra/newview/llsurfacepatch.h
@@ -48,7 +48,7 @@ public:
 		mDistance(0.f),
 		mRenderLevel(0),
 		mRenderStride(0) { };
-	~LLPatchVisibilityInfo() { };
+	~LLPatchVisibilityInfo() = default;
 
 	BOOL mbIsVisible;
 	F32 mDistance;			// Distance from camera
diff --git a/indra/newview/lltexturecache.cpp b/indra/newview/lltexturecache.cpp
index 79383971a3e0f8c1499c6d23968ad26ea2e7cc21..3bb43c82d6bbb1a182a5f3bfb868de5f76376e02 100644
--- a/indra/newview/lltexturecache.cpp
+++ b/indra/newview/lltexturecache.cpp
@@ -73,7 +73,7 @@ private:
 	{
 	public:
 		ReadResponder(LLTextureCache* cache, handle_t handle) : mCache(cache), mHandle(handle) {}
-		~ReadResponder() {}
+		~ReadResponder() = default;
 		void completed(S32 bytes) override
 		{
 			mCache->lockWorkers();
diff --git a/indra/newview/lltoastimpanel.h b/indra/newview/lltoastimpanel.h
index e8bff75eb0f51a24ae5959d70022d69444bc700e..0d9d1b3da10d7d46115cd8605c6c554b83d3938f 100644
--- a/indra/newview/lltoastimpanel.h
+++ b/indra/newview/lltoastimpanel.h
@@ -46,7 +46,7 @@ public:
 							time,
 							message;
 
-		Params() {}
+		Params() = default;
 	};
 
 	LLToastIMPanel(LLToastIMPanel::Params &p);
diff --git a/indra/newview/lltoastscriptquestion.h b/indra/newview/lltoastscriptquestion.h
index 6dbd3c514c6045c708271feda746d5d46a1452df..8105ac7468aa20de63ced0130210be2620a9d141 100644
--- a/indra/newview/lltoastscriptquestion.h
+++ b/indra/newview/lltoastscriptquestion.h
@@ -39,7 +39,7 @@ class LLToastScriptQuestion : public LLToastPanel
 public:
 	LLToastScriptQuestion(const LLNotificationPtr& notification);
 	BOOL postBuild() override;
-	virtual ~LLToastScriptQuestion(){};
+	virtual ~LLToastScriptQuestion() = default;
 
 	/*virtual*/ void setFocus(BOOL b) override;
 
diff --git a/indra/newview/lltooldraganddrop.cpp b/indra/newview/lltooldraganddrop.cpp
index b9ff3bb6add50ec5ea8e3e734d282b7661c856dd..9ed1b6889ba65a7d7ca8303ec0f0ba1145d71fca 100644
--- a/indra/newview/lltooldraganddrop.cpp
+++ b/indra/newview/lltooldraganddrop.cpp
@@ -73,8 +73,8 @@
 class LLNoPreferredType : public LLInventoryCollectFunctor
 {
 public:
-	LLNoPreferredType() {}
-	virtual ~LLNoPreferredType() {}
+	LLNoPreferredType() = default;
+	virtual ~LLNoPreferredType() = default;
 
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override
@@ -110,7 +110,7 @@ class LLDroppableItem : public LLInventoryCollectFunctor
 public:
 	LLDroppableItem(BOOL is_transfer) :
 		mCountLosing(0), mIsTransfer(is_transfer) {}
-	virtual ~LLDroppableItem() {}
+	virtual ~LLDroppableItem() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 	S32 countNoCopy() const { return mCountLosing; }
@@ -180,7 +180,7 @@ public:
 							const uuid_vec_t& item_ids) :
 		LLInventoryFetchComboObserver(folder_ids, item_ids)
 	{}
-	~LLCategoryFireAndForget() {}
+	~LLCategoryFireAndForget() = default;
 
 	void done() override
 	{
@@ -241,7 +241,7 @@ public:
 		mObjectID(obj_id),
 		mSource(src)
 	{}
-	~LLCategoryDropDescendentsObserver() {}
+	~LLCategoryDropDescendentsObserver() = default;
 	virtual void done();
 
 protected:
diff --git a/indra/newview/lltoolmorph.h b/indra/newview/lltoolmorph.h
index f8e63bdbc9ae5d7d20c6b9d83749285094f664c0..5de5e9eac7edd63c141f031ddbbc007ffd6e4af6 100644
--- a/indra/newview/lltoolmorph.h
+++ b/indra/newview/lltoolmorph.h
@@ -104,7 +104,7 @@ protected:
 class LLVisualParamReset final : public LLViewerDynamicTexture
 {
 protected:
-	/*virtual */ ~LLVisualParamReset(){}
+	/*virtual */ ~LLVisualParamReset() = default;
 public:
 	LLVisualParamReset();
 	/*virtual */ BOOL render() override;
diff --git a/indra/newview/lltranslate.cpp b/indra/newview/lltranslate.cpp
index d3ffcac40fb661af5d45e628413124fe63c58693..96f084c272911cf5304bd1b58e377087768ffbc3 100644
--- a/indra/newview/lltranslate.cpp
+++ b/indra/newview/lltranslate.cpp
@@ -106,7 +106,7 @@ public:
     virtual void translateMessage(LanguagePair_t fromTo, std::string msg, LLTranslate::TranslationSuccess_fn success, LLTranslate::TranslationFailure_fn failure);
 
 
-    virtual ~LLTranslationAPIHandler() {}
+    virtual ~LLTranslationAPIHandler() = default;
 
     void verifyKeyCoro(LLTranslate::EService service, std::string key, LLTranslate::KeyVerificationResult_fn fnc);
     void translateMessageCoro(LanguagePair_t fromTo, std::string msg, LLTranslate::TranslationSuccess_fn success, LLTranslate::TranslationFailure_fn failure);
diff --git a/indra/newview/lluploadfloaterobservers.h b/indra/newview/lluploadfloaterobservers.h
index 15c3dad38e6ba2e843308f40f358a282f2001463..d5de9743917a60303dbf8d486bdb9768b8b0c3c4 100644
--- a/indra/newview/lluploadfloaterobservers.h
+++ b/indra/newview/lluploadfloaterobservers.h
@@ -35,7 +35,7 @@ class LLUploadPermissionsObserver
 public:
 
 	LLUploadPermissionsObserver(){mUploadPermObserverHandle.bind(this);}
-	virtual ~LLUploadPermissionsObserver() {}
+	virtual ~LLUploadPermissionsObserver() = default;
 
 	virtual void onPermissionsReceived(const LLSD& result) = 0;
 	virtual void setPermissonsErrorStatus(S32 status, const std::string& reason) = 0;
@@ -50,7 +50,7 @@ class LLWholeModelFeeObserver
 {
 public:
 	LLWholeModelFeeObserver() { mWholeModelFeeObserverHandle.bind(this); }
-	virtual ~LLWholeModelFeeObserver() {}
+	virtual ~LLWholeModelFeeObserver() = default;
 
 	virtual void onModelPhysicsFeeReceived(const LLSD& result, std::string upload_url) = 0;
 	virtual void setModelPhysicsFeeErrorStatus(S32 status, const std::string& reason) = 0;
@@ -66,7 +66,7 @@ class LLWholeModelUploadObserver
 {
 public:
 	LLWholeModelUploadObserver() { mWholeModelUploadObserverHandle.bind(this); }
-	virtual ~LLWholeModelUploadObserver() {}
+	virtual ~LLWholeModelUploadObserver() = default;
 
 	virtual void onModelUploadSuccess() = 0;
 
diff --git a/indra/newview/llviewerassettype.h b/indra/newview/llviewerassettype.h
index 513f752c1ca07385d5afbebcaba72dd2b3647028..4023f37d32e3bb82af067e5bb809d674aa701597 100644
--- a/indra/newview/llviewerassettype.h
+++ b/indra/newview/llviewerassettype.h
@@ -41,8 +41,8 @@ public:
 													   std::string& description);
 	static EDragAndDropType   	lookupDragAndDropType(EType asset_type);
 protected:
-	LLViewerAssetType() {}
-	~LLViewerAssetType() {}
+	LLViewerAssetType() = default;
+	~LLViewerAssetType() = default;
 };
 
 #endif // LL_LLVIEWERASSETTYPE_H
diff --git a/indra/newview/llviewerfoldertype.h b/indra/newview/llviewerfoldertype.h
index 833d0a6c11da8dd63aba5a58f74bebf2d8192cf1..ee7fc1af076260529a83d0e1d0846a8fda83b646 100644
--- a/indra/newview/llviewerfoldertype.h
+++ b/indra/newview/llviewerfoldertype.h
@@ -46,8 +46,8 @@ public:
 	static U64					lookupValidFolderTypes(const std::string& item_name); // which folders allow an item of this type?
 
 protected:
-	LLViewerFolderType() {}
-	~LLViewerFolderType() {}
+	LLViewerFolderType() = default;
+	~LLViewerFolderType() = default;
 };
 
 #endif // LL_LLVIEWERFOLDERTYPE_H
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp
index 730a7b950a7f24249bd4c242f6dff552d8643a04..8655750e6d2c6a311b6da55703708aa9b8ba8603 100644
--- a/indra/newview/llviewerinventory.cpp
+++ b/indra/newview/llviewerinventory.cpp
@@ -2403,7 +2403,7 @@ class LLRegenerateLinkCollector : public LLInventoryCollectFunctor
 {
 public:
 	LLRegenerateLinkCollector(const LLViewerInventoryItem *target_item) : mTargetItem(target_item) {}
-	virtual ~LLRegenerateLinkCollector() {}
+	virtual ~LLRegenerateLinkCollector() = default;
 
     bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override
diff --git a/indra/newview/llviewerkeyboard.h b/indra/newview/llviewerkeyboard.h
index 178a570d8b511fd1f7cc1a37300f0735ba28924e..9ad1a8cc6c2fad05cc04709f52606986ccdfd1f1 100644
--- a/indra/newview/llviewerkeyboard.h
+++ b/indra/newview/llviewerkeyboard.h
@@ -36,8 +36,8 @@ const S32 MAX_KEY_BINDINGS = 128; // was 60
 class LLNamedFunction
 {
 public:
-	LLNamedFunction() { };
-	~LLNamedFunction() { };
+	LLNamedFunction() = default;
+	~LLNamedFunction() = default;
 
 	std::string	mName;
 	LLKeyFunc	mFunction;
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp
index 13ec9ccb72fa810a8f6babc1c73afc115939c5aa..bd7ef3e3f0e81bad8146cc1c6354a9e8a8a0c96c 100644
--- a/indra/newview/llviewermenu.cpp
+++ b/indra/newview/llviewermenu.cpp
@@ -3863,7 +3863,7 @@ class LLHaveCallingcard : public LLInventoryCollectFunctor
 {
 public:
 	LLHaveCallingcard(const LLUUID& agent_id);
-	virtual ~LLHaveCallingcard() {}
+	virtual ~LLHaveCallingcard() = default;
 	virtual bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item);
 	BOOL isThere() const { return mIsThere;}
@@ -7843,7 +7843,7 @@ class LLHasAsset : public LLInventoryCollectFunctor
 {
 public:
 	LLHasAsset(const LLUUID& id) : mAssetID(id), mHasAsset(FALSE) {}
-	virtual ~LLHasAsset() {}
+	virtual ~LLHasAsset() = default;
     bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
 	BOOL hasAsset() const { return mHasAsset; }
diff --git a/indra/newview/llviewertexteditor.cpp b/indra/newview/llviewertexteditor.cpp
index e5a5e6d040f30d43d30e793cf75b34964278e834..aa853a6938d0428294079685164adb5e896b3628 100644
--- a/indra/newview/llviewertexteditor.cpp
+++ b/indra/newview/llviewertexteditor.cpp
@@ -71,7 +71,7 @@ class LLEmbeddedLandmarkCopied final : public LLInventoryCallback
 {
 public:
 
-	LLEmbeddedLandmarkCopied(){}
+	LLEmbeddedLandmarkCopied() = default;
 	void fire(const LLUUID& inv_item) override
 	{
 		showInfo(inv_item);
diff --git a/indra/newview/llviewertexture.h b/indra/newview/llviewertexture.h
index 9b3b9c4dd7ce21b5393475c980eaf0cbc9a17d68..ca84e3da55a43d01a26257136dee55c6b9caf5e3 100644
--- a/indra/newview/llviewertexture.h
+++ b/indra/newview/llviewertexture.h
@@ -543,7 +543,7 @@ public:
 class LLViewerLODTexture final : public LLViewerFetchedTexture
 {
 protected:
-	/*virtual*/ ~LLViewerLODTexture(){}
+	/*virtual*/ ~LLViewerLODTexture() = default;
 
 public:
 	LLViewerLODTexture(const LLUUID& id, FTType f_type, const LLHost& host = LLHost(), BOOL usemipmaps = TRUE);
diff --git a/indra/newview/llvoiceclient.h b/indra/newview/llvoiceclient.h
index 2735c524b0c2feb11eeb33d8eb1568468fc1df23..8662d9ce62ac4f5c34f0335cca972e3a00fb739f 100644
--- a/indra/newview/llvoiceclient.h
+++ b/indra/newview/llvoiceclient.h
@@ -56,7 +56,7 @@ typedef std::vector<LLVoiceDevice> LLVoiceDeviceList;
 class LLVoiceClientParticipantObserver
 {
 public:
-	virtual ~LLVoiceClientParticipantObserver() { }
+	virtual ~LLVoiceClientParticipantObserver() = default;
 	virtual void onParticipantsChanged() = 0;
 };
 
@@ -84,7 +84,7 @@ public:
 		ERROR_UNKNOWN
 	} EStatusType;
 
-	virtual ~LLVoiceClientStatusObserver() { }
+	virtual ~LLVoiceClientStatusObserver() = default;
 	virtual void onChange(EStatusType status, const std::string &channelURI, bool proximal) = 0;
 
 	static std::string status2string(EStatusType inStatus);
@@ -106,8 +106,8 @@ struct LLVoiceVersionInfo
 class LLVoiceModuleInterface
 {
 public:
-	LLVoiceModuleInterface() {}
-	virtual ~LLVoiceModuleInterface() {}
+	LLVoiceModuleInterface() = default;
+	virtual ~LLVoiceModuleInterface() = default;
 	
 	virtual void init(LLPumpIO *pump)=0;	// Call this once at application startup (creates connector)
 	virtual void terminate()=0;	// Call this to clean up during shutdown
@@ -255,7 +255,7 @@ public:
 class LLVoiceEffectObserver
 {
 public:
-	virtual ~LLVoiceEffectObserver() { }
+	virtual ~LLVoiceEffectObserver() = default;
 	virtual void onVoiceEffectChanged(bool effect_list_updated) = 0;
 };
 
@@ -271,8 +271,8 @@ typedef std::multimap<const std::string, const LLUUID, LLDictionaryLess> voice_e
 class LLVoiceEffectInterface
 {
 public:
-	LLVoiceEffectInterface() {}
-	virtual ~LLVoiceEffectInterface() {}
+	LLVoiceEffectInterface() = default;
+	virtual ~LLVoiceEffectInterface() = default;
 
 	//////////////////////////
 	/// @name Accessors
diff --git a/indra/newview/llwearableitemslist.cpp b/indra/newview/llwearableitemslist.cpp
index 59ab9700e623ae9045ebde435222972fe6494f83..01d3a83272898812bb849a91c9c119a72e4e5fef 100644
--- a/indra/newview/llwearableitemslist.cpp
+++ b/indra/newview/llwearableitemslist.cpp
@@ -51,7 +51,7 @@
 class LLFindOutfitItems final : public LLInventoryCollectFunctor
 {
 public:
-	LLFindOutfitItems() {}
+	LLFindOutfitItems() = default;
 	virtual ~LLFindOutfitItems() = default;
 	bool operator()(LLInventoryCategory* cat,
 							LLInventoryItem* item) override;
diff --git a/indra/newview/llwearableitemslist.h b/indra/newview/llwearableitemslist.h
index cd2350b7b519643f4343043fdc6fbb24bb0e732a..4841d800f53ac80cef773305e45fa5267cc13fb0 100644
--- a/indra/newview/llwearableitemslist.h
+++ b/indra/newview/llwearableitemslist.h
@@ -106,7 +106,7 @@ public:
 
 	static LLPanelDeletableWearableListItem* create(LLViewerInventoryItem* item);
 
-	virtual ~LLPanelDeletableWearableListItem() {};
+	virtual ~LLPanelDeletableWearableListItem() = default;
 
 	/*virtual*/ BOOL postBuild() override;
 
@@ -125,7 +125,7 @@ class LLPanelAttachmentListItem final : public LLPanelDeletableWearableListItem
 	LOG_CLASS(LLPanelAttachmentListItem);
 public:
 	static LLPanelAttachmentListItem* create(LLViewerInventoryItem* item);
-	virtual ~LLPanelAttachmentListItem() {};
+	virtual ~LLPanelAttachmentListItem() = default;
 
 	/** Set item title. Joint name is added to the title in parenthesis */
 	/*virtual*/ void updateItem(const std::string& name,
@@ -247,8 +247,8 @@ class LLWearableListItemComparator : public LLFlatListView::ItemComparator
 	LOG_CLASS(LLWearableListItemComparator);
 
 public:
-	LLWearableListItemComparator() {};
-	virtual ~LLWearableListItemComparator() {};
+	LLWearableListItemComparator() = default;
+	virtual ~LLWearableListItemComparator() = default;
 
 	bool compare(const LLPanel* item1, const LLPanel* item2) const override
 	{
diff --git a/indra/newview/rlvcommon.h b/indra/newview/rlvcommon.h
index 47a8ebf1483cf92c87d1e554b06ef102eb01572b..67c99e08dfbadbf7efe012a0e408777713ec04f6 100644
--- a/indra/newview/rlvcommon.h
+++ b/indra/newview/rlvcommon.h
@@ -202,7 +202,7 @@ protected:
 class RlvExtCommandHandler
 {
 public:
-	virtual ~RlvExtCommandHandler() {}
+	virtual ~RlvExtCommandHandler() = default;
 	virtual bool onAddRemCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet) { return false; }
 	virtual bool onClearCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet)  { return false; }
 	virtual bool onReplyCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet)  { return false; }
@@ -228,14 +228,14 @@ bool rlvCanDeleteOrReturn(const LLViewerObject* pObj);
 
 struct RlvSelectHasLockedAttach : public LLSelectedNodeFunctor
 {
-	RlvSelectHasLockedAttach() {}
+	RlvSelectHasLockedAttach() = default;
 	virtual bool apply(LLSelectNode* pNode);
 };
 
 // Filters out selected objects that can't be editable (i.e. getFirstNode() will return NULL if the selection is fully editable)
 struct RlvSelectIsEditable : public LLSelectedNodeFunctor
 {
-	RlvSelectIsEditable() {}
+	RlvSelectIsEditable() = default;
 	/*virtual*/ bool apply(LLSelectNode* pNode);
 };
 
@@ -276,13 +276,13 @@ protected:
 
 struct RlvPredCanRemoveItem
 {
-	RlvPredCanRemoveItem() {}
+	RlvPredCanRemoveItem() = default;
 	bool operator()(const LLViewerInventoryItem* pItem) { return rlvPredCanRemoveItem(pItem); }
 };
 
 struct RlvPredCanNotRemoveItem
 {
-	RlvPredCanNotRemoveItem() {}
+	RlvPredCanNotRemoveItem() = default;
 	bool operator()(const LLViewerInventoryItem* pItem) { return rlvPredCanNotRemoveItem(pItem); }
 };
 
diff --git a/indra/newview/rlvextensions.h b/indra/newview/rlvextensions.h
index 08a6d1fca7b1022e53d1fbb3b9ab2ccd642eeeea..b255302504d6a6265261613b8f9993d6547b578a 100644
--- a/indra/newview/rlvextensions.h
+++ b/indra/newview/rlvextensions.h
@@ -31,7 +31,7 @@ class RlvExtGetSet : public RlvExtCommandHandler
 {
 public:
 	RlvExtGetSet();
-	virtual ~RlvExtGetSet() {}
+	virtual ~RlvExtGetSet() = default;
 
 	virtual bool onForceCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet);
 	virtual bool onReplyCommand(const RlvCommand& rlvCmd, ERlvCmdRet& cmdRet);
diff --git a/indra/newview/rlvhelper.h b/indra/newview/rlvhelper.h
index d1886fe2a636dc2a6c8726b34524b6225261cf82..babd8c0c6375828e53c8e3b743083f08b083ded2 100644
--- a/indra/newview/rlvhelper.h
+++ b/indra/newview/rlvhelper.h
@@ -63,7 +63,7 @@ public:
 
 	RlvBehaviourInfo(std::string strBhvr, ERlvBehaviour eBhvr, U32 maskParamType, U32 nBhvrFlags = 0)
 		: m_strBhvr(strBhvr), m_eBhvr(eBhvr), m_nBhvrFlags(nBhvrFlags), m_maskParamType(maskParamType) {}
-	virtual ~RlvBehaviourInfo() {}
+	virtual ~RlvBehaviourInfo() = default;
 
 	const std::string&	getBehaviour() const      { return m_strBhvr; }
 	ERlvBehaviour		getBehaviourType() const  { return m_eBhvr; }
@@ -385,7 +385,7 @@ struct RlvCommandOption
 protected:
 	RlvCommandOption() : m_fValid(false) {}
 public:
-	virtual ~RlvCommandOption() {}
+	virtual ~RlvCommandOption() = default;
 
 public:
 	virtual bool isEmpty() const { return false; }
diff --git a/indra/newview/rlvinventory.cpp b/indra/newview/rlvinventory.cpp
index 124706f770f25cf54d633db2a2434399a7c55663..c5f28ec0888c68359cb20d951cb4e372ac024a2f 100644
--- a/indra/newview/rlvinventory.cpp
+++ b/indra/newview/rlvinventory.cpp
@@ -41,7 +41,7 @@ class RlvSharedInventoryFetcher : public LLInventoryFetchDescendentsObserver
 {
 public:
 	RlvSharedInventoryFetcher(const uuid_vec_t& idFolders): LLInventoryFetchDescendentsObserver(idFolders) {}
-	virtual ~RlvSharedInventoryFetcher() {}
+	virtual ~RlvSharedInventoryFetcher() = default;
 
 	virtual void done()
 	{
diff --git a/indra/newview/rlvinventory.h b/indra/newview/rlvinventory.h
index 743e38dc1b4aca39efce80e9ebfec0442e89550b..7b24cf75f4bd55627af8a329b39e95ac1b43f2aa 100644
--- a/indra/newview/rlvinventory.h
+++ b/indra/newview/rlvinventory.h
@@ -113,7 +113,7 @@ class RlvRenameOnWearObserver : public LLInventoryFetchItemsObserver
 {
 public:
 	RlvRenameOnWearObserver(const LLUUID& idItem) : LLInventoryFetchItemsObserver(idItem) {}
-	virtual ~RlvRenameOnWearObserver() {}
+	virtual ~RlvRenameOnWearObserver() = default;
 	virtual void done();
 protected:
 	void doneIdle();
@@ -127,8 +127,8 @@ protected:
 class RlvGiveToRLVOffer
 {
 protected:
-	RlvGiveToRLVOffer() {}
-	virtual ~RlvGiveToRLVOffer() {}
+	RlvGiveToRLVOffer() = default;
+	virtual ~RlvGiveToRLVOffer() = default;
 protected:
 	bool         createDestinationFolder(const std::string& strPath);
 	virtual void onDestinationCreated(const LLUUID& idFolder, const std::string& strName) = 0;
@@ -163,7 +163,7 @@ class RlvGiveToRLVAgentOffer : public LLInventoryFetchDescendentsObserver, RlvGi
 {
 public:
 	RlvGiveToRLVAgentOffer(const LLUUID& idFolder) : LLInventoryFetchDescendentsObserver(idFolder), RlvGiveToRLVOffer()  {}
-	/*virtual*/ ~RlvGiveToRLVAgentOffer() {}
+	/*virtual*/ ~RlvGiveToRLVAgentOffer() = default;
 public:
 	/*virtual*/ void done();
 protected:
@@ -191,7 +191,7 @@ public:
 			idxLast = idxIt + 2;
 		}
 	}
-	virtual ~RlvCriteriaCategoryCollector() {}
+	virtual ~RlvCriteriaCategoryCollector() = default;
 
 	virtual bool operator()(LLInventoryCategory* pFolder, LLInventoryItem* pItem)
 	{
@@ -227,7 +227,7 @@ class RlvWearableItemCollector : public LLInventoryCollectFunctor
 {
 public:
 	RlvWearableItemCollector(const LLInventoryCategory* pFolder, RlvForceWear::EWearAction eAction, RlvForceWear::EWearFlags eFlags);
-	virtual ~RlvWearableItemCollector() {}
+	virtual ~RlvWearableItemCollector() = default;
 
 	virtual bool operator()(LLInventoryCategory* pFolder, LLInventoryItem* pItem);
 
@@ -261,8 +261,8 @@ protected:
 class RlvIsLinkType : public LLInventoryCollectFunctor
 {
 public:
-	RlvIsLinkType() {}
-	/*virtual*/ ~RlvIsLinkType() {}
+	RlvIsLinkType() = default;
+	/*virtual*/ ~RlvIsLinkType() = default;
 	virtual bool operator()(LLInventoryCategory* pFolder, LLInventoryItem* pItem) { return (pItem) && (pItem->getIsLinkType()); }
 };
 
@@ -271,7 +271,7 @@ class RlvFindAttachmentsOnPoint : public LLInventoryCollectFunctor
 {
 public:
 	RlvFindAttachmentsOnPoint(const LLViewerJointAttachment* pAttachPt) : m_pAttachPt(pAttachPt) {}
-	/*virtual*/ ~RlvFindAttachmentsOnPoint() {}
+	/*virtual*/ ~RlvFindAttachmentsOnPoint() = default;
 	virtual bool operator()(LLInventoryCategory* pFolder, LLInventoryItem* pItem);
 protected:
 	const LLViewerJointAttachment* m_pAttachPt;
diff --git a/indra/newview/rlvlocks.cpp b/indra/newview/rlvlocks.cpp
index 61e185b89a102ba510aa532103b3196f72af4674..8263bbfd61732e4e00de6d2fd5f849081d0ae545 100644
--- a/indra/newview/rlvlocks.cpp
+++ b/indra/newview/rlvlocks.cpp
@@ -932,7 +932,7 @@ class RlvLockedDescendentsCollector : public LLInventoryCollectFunctor
 public:
 	RlvLockedDescendentsCollector(int eSourceTypeMask, RlvFolderLocks::ELockPermission ePermMask, ERlvLockMask eLockTypeMask) 
 		: m_ePermMask(ePermMask), m_eSourceTypeMask(eSourceTypeMask), m_eLockTypeMask(eLockTypeMask) {}
-	/*virtual*/ ~RlvLockedDescendentsCollector() {}
+	/*virtual*/ ~RlvLockedDescendentsCollector() = default;
 	/*virtual*/ bool operator()(LLInventoryCategory* pFolder, LLInventoryItem* pItem)
 	{
 		return (pFolder) && (RlvFolderLocks::instance().isLockedFolderEntry(pFolder->getUUID(), m_eSourceTypeMask, m_ePermMask, m_eLockTypeMask));
diff --git a/indra/newview/rlvmodifiers.h b/indra/newview/rlvmodifiers.h
index 9d58462a9e5535511f6953bc2857fbe92cc7b264..f11e43fdb286ead67ced8503b2308ce6dac7da8a 100644
--- a/indra/newview/rlvmodifiers.h
+++ b/indra/newview/rlvmodifiers.h
@@ -41,7 +41,7 @@ protected:
 
 struct RlvBehaviourModifierComp
 {
-	virtual ~RlvBehaviourModifierComp() {}
+	virtual ~RlvBehaviourModifierComp() = default;
 	virtual bool operator()(const RlvBehaviourModifierValueTuple& lhs, const RlvBehaviourModifierValueTuple& rhs)
 	{
 		// Values that match the primary object take precedence (otherwise maintain relative ordering)
@@ -146,7 +146,7 @@ public:
 			RLV_ASSERT(false);
 		}
 	}
-	~RlvBehaviourModifierCache() {}
+	~RlvBehaviourModifierCache() = default;
 
 	/*
 	 * Member functions