diff --git a/indra/llaudio/llaudiodecodemgr.cpp b/indra/llaudio/llaudiodecodemgr.cpp
index cb22eaec5e79208384e587f0700852c42db6f834..bca72375122d7481fad0fa61e004de8eb25e3ec1 100644
--- a/indra/llaudio/llaudiodecodemgr.cpp
+++ b/indra/llaudio/llaudiodecodemgr.cpp
@@ -61,7 +61,7 @@ static const S32 WAV_HEADER_SIZE = 44;
 //////////////////////////////////////////////////////////////////////////////
 
 
-class LLVorbisDecodeState : public LLRefCount
+class LLVorbisDecodeState final : public LLRefCount
 {
 public:
 	class WriteResponder : public LLLFSThread::Responder
diff --git a/indra/llaudio/llaudioengine.cpp b/indra/llaudio/llaudioengine.cpp
index 7d41226b497f5542e1ec3038c5ad2ab39abb2756..3419e86cc49c9a0bf47b6cf2d0643a3781743c13 100644
--- a/indra/llaudio/llaudioengine.cpp
+++ b/indra/llaudio/llaudioengine.cpp
@@ -57,11 +57,6 @@ LLAudioEngine::LLAudioEngine()
 	setDefaults();
 }
 
-
-LLAudioEngine::~LLAudioEngine()
-{
-}
-
 LLStreamingAudioInterface* LLAudioEngine::getStreamingAudioImpl()
 {
 	return mStreamingAudioImpl;
diff --git a/indra/llaudio/llaudioengine.h b/indra/llaudio/llaudioengine.h
index 97674f15f7a37494baf8da9ef8030a1d389acfb0..b4e22fae8c308332f6588460efb061e89c05ec18 100644
--- a/indra/llaudio/llaudioengine.h
+++ b/indra/llaudio/llaudioengine.h
@@ -96,7 +96,7 @@ class LLAudioEngine
 	};
 	
 	LLAudioEngine();
-	virtual ~LLAudioEngine();
+	virtual ~LLAudioEngine() = default;
 
 	// initialization/startup/shutdown
 	virtual bool init(const S32 num_channels, void *userdata, const std::string &app_title);
@@ -445,7 +445,7 @@ class LLAudioChannel
 class LLAudioBuffer
 {
 public:
-	virtual ~LLAudioBuffer() {};
+	virtual ~LLAudioBuffer() = default;
 	virtual bool loadWAV(const std::string& filename) = 0;
 	virtual U32 getLength() = 0;
 
diff --git a/indra/llaudio/llaudioengine_openal.h b/indra/llaudio/llaudioengine_openal.h
index b6bd4b16d6cb092cce72e25562ecd5c4615f787e..29108d7a0f3b1c09e499aeb26dd91265426249c8 100644
--- a/indra/llaudio/llaudioengine_openal.h
+++ b/indra/llaudio/llaudioengine_openal.h
@@ -34,7 +34,7 @@
 #include "lllistener_openal.h"
 #include "llwindgen.h"
 
-class LLAudioEngine_OpenAL : public LLAudioEngine
+class LLAudioEngine_OpenAL final : public LLAudioEngine
 {
 	public:
 		LLAudioEngine_OpenAL();
diff --git a/indra/llcharacter/lleditingmotion.h b/indra/llcharacter/lleditingmotion.h
index 7b1c8bb0598ad3a4be255011978bd9553c532342..b11398ae78e4e27f5890557c0117213d63ef5208 100644
--- a/indra/llcharacter/lleditingmotion.h
+++ b/indra/llcharacter/lleditingmotion.h
@@ -42,7 +42,7 @@
 //-----------------------------------------------------------------------------
 // class LLEditingMotion
 //-----------------------------------------------------------------------------
-class LLEditingMotion :
+class LLEditingMotion final :
 	public LLMotion
 {
 public:
diff --git a/indra/llcharacter/llhandmotion.cpp b/indra/llcharacter/llhandmotion.cpp
index b3bf5a9a919d9b1ed2e835702ce5e485c5da5112..4043d1b8bee156ab459cc2d9c78151dad68aa9ae 100644
--- a/indra/llcharacter/llhandmotion.cpp
+++ b/indra/llcharacter/llhandmotion.cpp
@@ -76,14 +76,6 @@ LLHandMotion::LLHandMotion(const LLUUID &id) : LLMotion(id)
 }
 
 
-//-----------------------------------------------------------------------------
-// ~LLHandMotion()
-// Class Destructor
-//-----------------------------------------------------------------------------
-LLHandMotion::~LLHandMotion()
-{
-}
-
 //-----------------------------------------------------------------------------
 // LLHandMotion::onInitialize(LLCharacter *character)
 //-----------------------------------------------------------------------------
diff --git a/indra/llcharacter/llhandmotion.h b/indra/llcharacter/llhandmotion.h
index 08de7056c8e19d404ad4d80917766898bd275294..8432e744ddc09e189de4399b6ad7b8f1754cf839 100644
--- a/indra/llcharacter/llhandmotion.h
+++ b/indra/llcharacter/llhandmotion.h
@@ -38,7 +38,7 @@
 //-----------------------------------------------------------------------------
 // class LLHandMotion
 //-----------------------------------------------------------------------------
-class LLHandMotion :
+class LLHandMotion final :
 	public LLMotion
 {
 public:
@@ -65,7 +65,7 @@ class LLHandMotion :
 	LLHandMotion(const LLUUID &id);
 
 	// Destructor
-	virtual ~LLHandMotion();
+	virtual ~LLHandMotion() = default;
 
 public:
 	//-------------------------------------------------------------------------
diff --git a/indra/llcharacter/llheadrotmotion.h b/indra/llcharacter/llheadrotmotion.h
index 53ae1813bc1bb5d6a50c991d91a808b5a3fc5665..66612f84646364066e4461fc9a757fa6df239479 100644
--- a/indra/llcharacter/llheadrotmotion.h
+++ b/indra/llcharacter/llheadrotmotion.h
@@ -39,7 +39,7 @@
 //-----------------------------------------------------------------------------
 // class LLHeadRotMotion
 //-----------------------------------------------------------------------------
-class LLHeadRotMotion :
+class LLHeadRotMotion final :
 	public LLMotion
 {
 public:
diff --git a/indra/llcharacter/llkeyframefallmotion.h b/indra/llcharacter/llkeyframefallmotion.h
index 7f0a2fdda28ade431e24f44d143c85517f9b8ef9..cd67475be27c96dfbe6ca8fb60bf99ba3662dcdf 100644
--- a/indra/llcharacter/llkeyframefallmotion.h
+++ b/indra/llcharacter/llkeyframefallmotion.h
@@ -36,7 +36,7 @@
 //-----------------------------------------------------------------------------
 // class LLKeyframeFallMotion
 //-----------------------------------------------------------------------------
-class LLKeyframeFallMotion :
+class LLKeyframeFallMotion final :
 	public LLKeyframeMotion
 {
 public:
diff --git a/indra/llcharacter/llkeyframemotionparam.h b/indra/llcharacter/llkeyframemotionparam.h
index 0fac3724d14dac9392c0d7571595c40da532bc30..151dd3105b13502257e1a01d319344d5edf47e14 100644
--- a/indra/llcharacter/llkeyframemotionparam.h
+++ b/indra/llcharacter/llkeyframemotionparam.h
@@ -42,7 +42,7 @@
 //-----------------------------------------------------------------------------
 // class LLKeyframeMotionParam
 //-----------------------------------------------------------------------------
-class LLKeyframeMotionParam :
+class LLKeyframeMotionParam final :
 	public LLMotion
 {
 public:
diff --git a/indra/llcharacter/llkeyframestandmotion.h b/indra/llcharacter/llkeyframestandmotion.h
index c2634ecd6d185f452dd6f90a8a996566fd6f5874..e0d0fab17ab9c427da43bbb5a764222e3a70dd32 100644
--- a/indra/llcharacter/llkeyframestandmotion.h
+++ b/indra/llcharacter/llkeyframestandmotion.h
@@ -37,7 +37,7 @@
 //-----------------------------------------------------------------------------
 // class LLKeyframeStandMotion
 //-----------------------------------------------------------------------------
-class LLKeyframeStandMotion :
+class LLKeyframeStandMotion final :
 	public LLKeyframeMotion
 {
 public:
diff --git a/indra/llcharacter/llkeyframewalkmotion.h b/indra/llcharacter/llkeyframewalkmotion.h
index 0e8d21b7652ccf523b582e5f7a381269ecfcb6aa..99004814004f54d337b8d076c1867e6d11fe7ee7 100644
--- a/indra/llcharacter/llkeyframewalkmotion.h
+++ b/indra/llcharacter/llkeyframewalkmotion.h
@@ -40,7 +40,7 @@
 //-----------------------------------------------------------------------------
 // class LLKeyframeWalkMotion
 //-----------------------------------------------------------------------------
-class LLKeyframeWalkMotion :
+class LLKeyframeWalkMotion final :
 	public LLKeyframeMotion
 {
 	friend class LLWalkAdjustMotion;
@@ -80,7 +80,7 @@ class LLKeyframeWalkMotion :
 	S32			mDownFoot;
 };
 
-class LLWalkAdjustMotion : public LLMotion
+class LLWalkAdjustMotion final : public LLMotion
 {
 public:
 	// Constructor
@@ -130,7 +130,7 @@ class LLWalkAdjustMotion : public LLMotion
 	F32				mAnkleOffset;
 };
 
-class LLFlyAdjustMotion : public LLMotion
+class LLFlyAdjustMotion final : public LLMotion
 {
 public:
 	// Constructor
diff --git a/indra/llcharacter/llmotion.h b/indra/llcharacter/llmotion.h
index 2dfc3afc7f0964ba71fa7defcb69db4e3272573f..4efc6c6990d7b791ded55490c46e926e175fcb1f 100644
--- a/indra/llcharacter/llmotion.h
+++ b/indra/llcharacter/llmotion.h
@@ -190,7 +190,7 @@ class LLMotion
 //-----------------------------------------------------------------------------
 // LLTestMotion
 //-----------------------------------------------------------------------------
-class LLTestMotion : public LLMotion
+class LLTestMotion final : public LLMotion
 {
 public:
 	LLTestMotion(const LLUUID &id) : LLMotion(id){}
@@ -214,7 +214,7 @@ class LLTestMotion : public LLMotion
 //-----------------------------------------------------------------------------
 // LLNullMotion
 //-----------------------------------------------------------------------------
-class LLNullMotion : public LLMotion
+class LLNullMotion final : public LLMotion
 {
 public:
 	LLNullMotion(const LLUUID &id) : LLMotion(id) {}
diff --git a/indra/llcharacter/llpose.cpp b/indra/llcharacter/llpose.cpp
index 20687e169a317418485acccc5ef97091f6de92e8..e08176c08b782a7188f04dadfa59261053b63d68 100644
--- a/indra/llcharacter/llpose.cpp
+++ b/indra/llcharacter/llpose.cpp
@@ -187,11 +187,6 @@ LLJointStateBlender::LLJointStateBlender()
 	}
 }
 
-LLJointStateBlender::~LLJointStateBlender()
-{
-	
-}
-
 //-----------------------------------------------------------------------------
 // addJointState()
 //-----------------------------------------------------------------------------
diff --git a/indra/llcharacter/llpose.h b/indra/llcharacter/llpose.h
index 886923da37bf68cce3db9cf1db7775f6ec00a565..fdb7158a5eb27e64f1771a4bd0d98534fbd3c66b 100644
--- a/indra/llcharacter/llpose.h
+++ b/indra/llcharacter/llpose.h
@@ -90,7 +90,7 @@ class LLJointStateBlender
 	BOOL			mAdditiveBlends[JSB_NUM_JOINT_STATES];
 public:
 	LLJointStateBlender();
-	~LLJointStateBlender();
+	~LLJointStateBlender() = default;
 	void blendJointStates(BOOL apply_now = TRUE);
 	BOOL addJointState(const LLPointer<LLJointState>& joint_state, S32 priority, BOOL additive_blend);
 	void interpolate(F32 u);
diff --git a/indra/llcharacter/llstatemachine.h b/indra/llcharacter/llstatemachine.h
index a2f7e59bd2b24a54948b7a288ecbd9769277346d..ebfdbc462b85b6359587766feeb6051456a3798d 100644
--- a/indra/llcharacter/llstatemachine.h
+++ b/indra/llcharacter/llstatemachine.h
@@ -41,18 +41,18 @@ class LLUniqueID
 	U32			mId;
 public:
 	LLUniqueID(){mId = sNextID++;}
-	virtual ~LLUniqueID(){}
+	virtual ~LLUniqueID() = default;
 	U32		getID() {return mId;}
 };
 
-class LLFSMTransition : public LLUniqueID
+class LLFSMTransition final : public LLUniqueID
 {
 public:
 	LLFSMTransition() : LLUniqueID(){};
 	virtual std::string getName()const { return "unnamed"; }
 };
 
-class LLFSMState : public LLUniqueID
+class LLFSMState final : public LLUniqueID
 {
 public:
 	LLFSMState() : LLUniqueID(){};
diff --git a/indra/llcharacter/lltargetingmotion.h b/indra/llcharacter/lltargetingmotion.h
index 0971417e1efd0065655c971602c9698b51652bcd..accc5a41356ae58e622bb6fa6781842b650855ca 100644
--- a/indra/llcharacter/lltargetingmotion.h
+++ b/indra/llcharacter/lltargetingmotion.h
@@ -41,7 +41,7 @@
 //-----------------------------------------------------------------------------
 // class LLTargetingMotion
 //-----------------------------------------------------------------------------
-class LLTargetingMotion :
+class LLTargetingMotion final :
 	public LLMotion
 {
 public:
diff --git a/indra/llmessage/llbuffer.h b/indra/llmessage/llbuffer.h
index ccdb9fa7ee9e04c6cae6e1c4579993cae8eb72d8..7617adb663193893382a5ad7ca2899e3e07ded59 100644
--- a/indra/llmessage/llbuffer.h
+++ b/indra/llmessage/llbuffer.h
@@ -140,7 +140,7 @@ class LLBuffer
 	 * @brief The buffer base class should have no responsibilities
 	 * other than an interface.
 	 */ 
-	virtual ~LLBuffer() {}
+	virtual ~LLBuffer() = default;
 
 	/** 
 	 * @brief Generate a segment for this buffer.
diff --git a/indra/llmessage/lldatapacker.h b/indra/llmessage/lldatapacker.h
index 5140f56c015c92049648a758f1a1e3a4181ef089..fa455a9300cd8229901435776b88bb57450b3bca 100644
--- a/indra/llmessage/lldatapacker.h
+++ b/indra/llmessage/lldatapacker.h
@@ -37,7 +37,7 @@ class LLUUID;
 class LLDataPacker
 {
 public:
-	virtual ~LLDataPacker() {}
+	virtual ~LLDataPacker() = default;
 	
 	// Not required to override, but error to call?
 	virtual void		reset();
@@ -103,7 +103,7 @@ class LLDataPacker
 	BOOL mWriteEnabled; // disable this to do things like determine filesize without actually copying data
 };
 
-class LLDataPackerBinaryBuffer : public LLDataPacker
+class LLDataPackerBinaryBuffer final : public LLDataPacker
 {
 public:
 	LLDataPackerBinaryBuffer(U8 *bufferp, S32 size)
@@ -208,7 +208,7 @@ inline BOOL LLDataPackerBinaryBuffer::verifyLength(const S32 data_size, const ch
 	return TRUE;
 }
 
-class LLDataPackerAsciiBuffer : public LLDataPacker
+class LLDataPackerAsciiBuffer final : public LLDataPacker
 {
 public:
 	LLDataPackerAsciiBuffer(char* bufferp, S32 size)
@@ -329,7 +329,7 @@ inline BOOL LLDataPackerAsciiBuffer::verifyLength(const S32 data_size, const cha
 	return TRUE;
 }
 
-class LLDataPackerAsciiFile : public LLDataPacker
+class LLDataPackerAsciiFile final : public LLDataPacker
 {
 public:
 	LLDataPackerAsciiFile(LLFILE *fp, const S32 indent = 2)
diff --git a/indra/llmessage/llhttpnode.cpp b/indra/llmessage/llhttpnode.cpp
index 612c947a596b119c07e1c4f130d04a1c5b0bfc1a..8b8dfde030d2a81173175ac66b18712c79f2c9d3 100644
--- a/indra/llmessage/llhttpnode.cpp
+++ b/indra/llmessage/llhttpnode.cpp
@@ -471,10 +471,6 @@ LLPointer<LLSimpleResponse> LLSimpleResponse::create()
 	return new LLSimpleResponse();
 }
 
-LLSimpleResponse::~LLSimpleResponse()
-{
-}
-
 void LLSimpleResponse::result(const LLSD& result)
 {
 	status(HTTP_OK, "OK");
diff --git a/indra/llmessage/llhttpnode.h b/indra/llmessage/llhttpnode.h
index 1144d88be16dfb62864b36e4c85ae065efab14c7..8c5c8927355bc1cc7e84dce67705d2cd28b55da5 100644
--- a/indra/llmessage/llhttpnode.h
+++ b/indra/llmessage/llhttpnode.h
@@ -298,7 +298,7 @@ class LLHTTPNode
 
 
 
-class LLSimpleResponse : public LLHTTPNode::Response
+class LLSimpleResponse final : public LLHTTPNode::Response
 {
 public:
 	static LLPointer<LLSimpleResponse> create();
@@ -314,7 +314,7 @@ class LLSimpleResponse : public LLHTTPNode::Response
 	std::string mMessage;
 
 protected:
-	~LLSimpleResponse();
+	~LLSimpleResponse() = default;
 
 private:
         LLSimpleResponse() : mCode(0) {} // Must be accessed through LLPointer.
diff --git a/indra/llmessage/llhttpnodeadapter.h b/indra/llmessage/llhttpnodeadapter.h
index 22984c4478cf5f668a2a88780f11f3e0d6bcb4cf..05672f199c4f097aa7e47e798d1934c32851e4ee 100644
--- a/indra/llmessage/llhttpnodeadapter.h
+++ b/indra/llmessage/llhttpnodeadapter.h
@@ -30,7 +30,7 @@
 #include "llhttpnode.h"
 
 template<typename T>
-class LLHTTPNodeAdapter : public LLHTTPNode
+class LLHTTPNodeAdapter final : public LLHTTPNode
 {
 public:
 
diff --git a/indra/llmessage/llmessagetemplate.h b/indra/llmessage/llmessagetemplate.h
index a44e16fc3ae6ee41b2e30841747b9acd79caa3d5..2a1a7072c7cca2c45b12662ada10a5cc244d0b00 100644
--- a/indra/llmessage/llmessagetemplate.h
+++ b/indra/llmessage/llmessagetemplate.h
@@ -43,11 +43,8 @@ class LLMsgVarData
 		mName = (char *)name; 
 	}
 
-	~LLMsgVarData() 
-	{
-		// copy constructor just copies the mData pointer, so only delete mData explicitly
-	}
-	
+	~LLMsgVarData() = default; // copy constructor just copies the mData pointer, so only delete mData explicitly
+
 	void deleteData() 
 	{
 		delete[] mData;
diff --git a/indra/llmessage/llmessagethrottle.cpp b/indra/llmessage/llmessagethrottle.cpp
index 98ae834b0d8b80bbc71bd9ecf767dc655b3f51f0..b738838a25e02e6d26641f42db6c9939d4a5f698 100644
--- a/indra/llmessage/llmessagethrottle.cpp
+++ b/indra/llmessage/llmessagethrottle.cpp
@@ -44,14 +44,6 @@ const U64 MAX_MESSAGE_AGE[MTC_EOF] =
 	10 * SEC_TO_USEC	// MTC_AGENT_ALERT
 };
 
-LLMessageThrottle::LLMessageThrottle()
-{
-}
-
-LLMessageThrottle::~LLMessageThrottle()
-{
-}
-
 void LLMessageThrottle::pruneEntries()
 {
 	// Go through each message category, and prune entries older than max age.
diff --git a/indra/llmessage/llmessagethrottle.h b/indra/llmessage/llmessagethrottle.h
index 4ea84f712aa16ee9d1f6d0a89b047d9141dd62ab..a18639f86f9ef043a035f6219f8b62087da17acf 100644
--- a/indra/llmessage/llmessagethrottle.h
+++ b/indra/llmessage/llmessagethrottle.h
@@ -56,8 +56,8 @@ class LLMessageThrottleEntry
 class LLMessageThrottle
 {
 public:
-	LLMessageThrottle();
-	~LLMessageThrottle();
+	LLMessageThrottle() = default;
+	~LLMessageThrottle() = default;
 
 	BOOL addViewerAlert	(const LLUUID& to, const std::string& mesg);
 	BOOL addAgentAlert	(const LLUUID& agent, const LLUUID& task, const std::string& mesg);
diff --git a/indra/llmessage/llnullcipher.h b/indra/llmessage/llnullcipher.h
index a9f9a1ce037fe95c7a55fb8443228ed76557b915..011c6624c39cee0e188d6c0380b580428c127462 100644
--- a/indra/llmessage/llnullcipher.h
+++ b/indra/llmessage/llnullcipher.h
@@ -38,8 +38,8 @@
 class LLNullCipher : public LLCipher
 {
 public:
-	LLNullCipher() {}
-	virtual ~LLNullCipher() {}
+	LLNullCipher() = default;
+	virtual ~LLNullCipher() = default;
 	virtual U32 encrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len);
 	virtual U32 decrypt(const U8* src, U32 src_len, U8* dst, U32 dst_len);
 	virtual U32 requiredEncryptionSpace(U32 src_len) const;
diff --git a/indra/llmessage/llpacketack.h b/indra/llmessage/llpacketack.h
index f0ed923f19385274015d981d754daddec855ff99..997b1e81f3aac195fabe025a1bcea5ea97e26ce9 100644
--- a/indra/llmessage/llpacketack.h
+++ b/indra/llmessage/llpacketack.h
@@ -47,7 +47,7 @@ class LLReliablePacketParams
 		clear();
 	};
 
-	~LLReliablePacketParams() { };
+	~LLReliablePacketParams() = default;
 
 	void clear()
 	{
diff --git a/indra/llmessage/llpacketbuffer.cpp b/indra/llmessage/llpacketbuffer.cpp
index ccf991b1a7351b7b5c8d375f4259e93ab382738b..94bac7213133f6b3839b2ad19b8a274d4b037ea3 100644
--- a/indra/llmessage/llpacketbuffer.cpp
+++ b/indra/llmessage/llpacketbuffer.cpp
@@ -61,12 +61,6 @@ LLPacketBuffer::LLPacketBuffer (S32 hSocket)
 
 ///////////////////////////////////////////////////////////
 
-LLPacketBuffer::~LLPacketBuffer ()
-{
-}
-
-///////////////////////////////////////////////////////////
-
 void LLPacketBuffer::init (S32 hSocket)
 {
 	mSize = receive_packet(hSocket, mData);
diff --git a/indra/llmessage/llpacketbuffer.h b/indra/llmessage/llpacketbuffer.h
index 14b6f9d5d223ec88d4b695064d3bcb97e7f7f35a..53000094d7d19165d2f25c05e2684caedd230128 100644
--- a/indra/llmessage/llpacketbuffer.h
+++ b/indra/llmessage/llpacketbuffer.h
@@ -36,7 +36,7 @@ class LLPacketBuffer
 public:
 	LLPacketBuffer(const LLHost &host, const char *datap, const S32 size);
 	LLPacketBuffer(S32 hSocket);           // receive a packet
-	~LLPacketBuffer();
+	~LLPacketBuffer() = default;
 
 	S32			getSize() const					{ return mSize; }
 	const char	*getData() const				{ return mData; }
diff --git a/indra/llmessage/llsdmessagereader.h b/indra/llmessage/llsdmessagereader.h
index 3b3d7fbfbe7957867a3d22c8a81a46416fd35429..65125468cf0217296872186286738f01c45554f8 100644
--- a/indra/llmessage/llsdmessagereader.h
+++ b/indra/llmessage/llsdmessagereader.h
@@ -35,7 +35,7 @@
 class LLMessageTemplate;
 class LLMsgData;
 
-class LLSDMessageReader : public LLMessageReader
+class LLSDMessageReader final : public LLMessageReader
 {
 public:
 
diff --git a/indra/llmessage/lltemplatemessagereader.h b/indra/llmessage/lltemplatemessagereader.h
index fcf8f92fa6aac61651d2eb912269c643b2da3fae..3e5162d43a8560c12fa38c73068a5b33aa7977a2 100644
--- a/indra/llmessage/lltemplatemessagereader.h
+++ b/indra/llmessage/lltemplatemessagereader.h
@@ -34,7 +34,7 @@
 class LLMessageTemplate;
 class LLMsgData;
 
-class LLTemplateMessageReader : public LLMessageReader
+class LLTemplateMessageReader final : public LLMessageReader
 {
 public:
 
diff --git a/indra/llmessage/llthrottle.h b/indra/llmessage/llthrottle.h
index e43e54f61b2521bdd7136c40c6adf86242681fff..46dfd2ca43b1ce6ca191b825d1d503a2a7a2eda6 100644
--- a/indra/llmessage/llthrottle.h
+++ b/indra/llmessage/llthrottle.h
@@ -38,7 +38,7 @@ class LLThrottle
 {
 public:
 	LLThrottle(const F32 throttle = 1.f);
-	~LLThrottle() { }
+	~LLThrottle() = default;
 
 	void setRate(const F32 rate);
 	BOOL checkOverflow(const F32 amount); // I'm about to add an amount, TRUE if would overflow throttle
@@ -70,7 +70,7 @@ class LLThrottleGroup
 {
 public:
 	LLThrottleGroup();
-	~LLThrottleGroup() { }
+	~LLThrottleGroup() = default;
 
 	void	resetDynamicAdjust();
 	BOOL	checkOverflow(S32 throttle_cat, F32 bits);		// I'm about to send bits, TRUE if would overflow channel
diff --git a/indra/llmessage/machine.h b/indra/llmessage/machine.h
index 07aadd47d2e2a1432df482696243b642a5668797..0630b676c3201d7e069778f765c8941d0cc3369a 100644
--- a/indra/llmessage/machine.h
+++ b/indra/llmessage/machine.h
@@ -55,7 +55,7 @@ class LLMachine
 	LLMachine(EMachineType machine_type, const LLHost &host) 
 		: mMachineType(machine_type) {mHost = host; mControlPort = 0;}
 
-	~LLMachine()	{}
+	~LLMachine() = default;
 
 	// get functions
 	EMachineType	getMachineType()	const { return mMachineType; }
diff --git a/indra/llmessage/partsyspacket.cpp b/indra/llmessage/partsyspacket.cpp
index d87de38aa52672d019c381a1fe77f9778f83f129..41714725adcad73a8399471c5a494f7e5984d16e 100644
--- a/indra/llmessage/partsyspacket.cpp
+++ b/indra/llmessage/partsyspacket.cpp
@@ -143,11 +143,6 @@ LLPartSysCompressedPacket::LLPartSysCompressedPacket()
 	gSetInitDataDefaults(&mDefaults);
 }
 
-LLPartSysCompressedPacket::~LLPartSysCompressedPacket()
-{
-	// no dynamic data is stored by this class, do nothing.
-}
-
 void LLPartSysCompressedPacket::writeFlagByte(LLPartInitData *in)
 {
 		mData[0] =  mData[1] = mData[2] = '\0';
diff --git a/indra/llmessage/partsyspacket.h b/indra/llmessage/partsyspacket.h
index d9abecea3f9ae6e91b10285c12935008c9352d48..21b9595f89391cb638132170e91a3bed15f8ea3c 100644
--- a/indra/llmessage/partsyspacket.h
+++ b/indra/llmessage/partsyspacket.h
@@ -201,7 +201,7 @@ class LLPartSysCompressedPacket
 {
 public:
 	LLPartSysCompressedPacket();
-	~LLPartSysCompressedPacket();
+	~LLPartSysCompressedPacket() = default;
 	BOOL	fromLLPartInitData(LLPartInitData *in, U32 &bytesUsed);
 	BOOL	toLLPartInitData(LLPartInitData *out, U32 *bytesUsed);
 	BOOL	fromUnsignedBytes(U8 *in, U32 bytesUsed);
diff --git a/indra/llprimitive/lldaeloader.h b/indra/llprimitive/lldaeloader.h
index 4e990dbe5e51b887f40ec09501bdd8eabd4b9350..9735880df1eef1a2a555e71402c8949c6b11aedb 100644
--- a/indra/llprimitive/lldaeloader.h
+++ b/indra/llprimitive/lldaeloader.h
@@ -39,7 +39,7 @@ class domController;
 class domSkin;
 class domMesh;
 
-class LLDAELoader : public LLModelLoader
+class LLDAELoader final : public LLModelLoader
 {
 public:
 	typedef std::map<std::string, LLImportMaterial>							material_map;
diff --git a/indra/llprimitive/llmaterial.h b/indra/llprimitive/llmaterial.h
index d58b7ee8127ae7d86488827702723bdbd2f6ab3b..83c86c81d559ebd550092642a7a3d2a17524445f 100644
--- a/indra/llprimitive/llmaterial.h
+++ b/indra/llprimitive/llmaterial.h
@@ -35,7 +35,7 @@
 #include "llpointer.h"
 #include "llrefcount.h"
 
-class LLMaterial : public LLRefCount
+class LLMaterial final : public LLRefCount
 {
 public:
 
diff --git a/indra/llprimitive/llmaterialtable.h b/indra/llprimitive/llmaterialtable.h
index a17e0103ff86093aeec8ae570f9bd53b6bdfda7b..9c4c6d88b64d10433057557af04e2613091dcada 100644
--- a/indra/llprimitive/llmaterialtable.h
+++ b/indra/llprimitive/llmaterialtable.h
@@ -178,9 +178,7 @@ class LLMaterialInfo
 		mDefaultTextureID = uuid;		
 	};
 
-	~LLMaterialInfo()
-	{
-	};
+	~LLMaterialInfo() = default;
 
 };
 
diff --git a/indra/llprimitive/llmodel.h b/indra/llprimitive/llmodel.h
index 51fa2f8079cfef5f9182df9a68e24280dce4f88b..86910f7e21d58f1053e1d7da77e70de74cfef382 100644
--- a/indra/llprimitive/llmodel.h
+++ b/indra/llprimitive/llmodel.h
@@ -59,7 +59,7 @@ class LLMeshSkinInfo
     bool mJointNumsInitialized;
 };
 
-class LLModel : public LLVolume
+class LLModel final : public LLVolume
 {
 public:
 
@@ -107,7 +107,7 @@ class LLModel : public LLVolume
 	class Decomposition
 	{
 	public:
-		Decomposition() { }
+		Decomposition() = default;
 		Decomposition(LLSD& data);
 		void fromLLSD(LLSD& data);
 		LLSD asLLSD() const;
@@ -303,7 +303,7 @@ class LLModelMaterialBase
 	}
 };
 
-class LLImportMaterial : public LLModelMaterialBase
+class LLImportMaterial final : public LLModelMaterialBase
 {
 public:
     friend class LLMeshUploadThread;
@@ -358,7 +358,7 @@ class LLModelInstanceBase
 
 typedef std::vector<LLModelInstanceBase> model_instance_list;
 
-class LLModelInstance : public LLModelInstanceBase
+class LLModelInstance final : public LLModelInstanceBase
 {
 public:
 	std::string mLabel;
diff --git a/indra/llprimitive/llprimitive.h b/indra/llprimitive/llprimitive.h
index b1f8112223053cd708261abbe381733e44a9e29c..b5ad6857725d0ae0e86e227a5811f210e1f1f83e 100644
--- a/indra/llprimitive/llprimitive.h
+++ b/indra/llprimitive/llprimitive.h
@@ -111,7 +111,7 @@ class LLNetworkData
 	
 public:
 	U16 mType;
-	virtual ~LLNetworkData() {};
+	virtual ~LLNetworkData() = default;
 	virtual BOOL pack(LLDataPacker &dp) const = 0;
 	virtual BOOL unpack(LLDataPacker &dp) = 0;
 	virtual bool operator==(const LLNetworkData& data) const = 0;
@@ -129,7 +129,7 @@ extern const F32 LIGHT_MIN_CUTOFF;
 extern const F32 LIGHT_DEFAULT_CUTOFF;
 extern const F32 LIGHT_MAX_CUTOFF;
 
-class LLLightParams : public LLNetworkData
+class LLLightParams final : public LLNetworkData
 {
 private:
 	LLColor4 mColor; // linear color (not gamma corrected), alpha = intensity
@@ -213,7 +213,7 @@ extern const BOOL FLEXIBLE_OBJECT_DEFAULT_USING_COLLISION_SPHERE;
 extern const BOOL FLEXIBLE_OBJECT_DEFAULT_RENDERING_COLLISION_SPHERE;
 
 
-class LLFlexibleObjectData : public LLNetworkData
+class LLFlexibleObjectData final : public LLNetworkData
 {
 protected:
 	S32			mSimulateLOD;		// 2^n = number of simulated sections
@@ -253,7 +253,7 @@ class LLFlexibleObjectData : public LLNetworkData
 
 
 
-class LLSculptParams : public LLNetworkData
+class LLSculptParams final : public LLNetworkData
 {
 protected:
 	LLUUID mSculptTexture;
@@ -274,7 +274,7 @@ class LLSculptParams : public LLNetworkData
 	U8 getSculptType() const                { return mSculptType; }
 };
 
-class LLLightImageParams : public LLNetworkData
+class LLLightImageParams final : public LLNetworkData
 {
 protected:
 	LLUUID mLightTexture;
@@ -298,7 +298,7 @@ class LLLightImageParams : public LLNetworkData
 	
 };
 
-class LLExtendedMeshParams : public LLNetworkData
+class LLExtendedMeshParams final : public LLNetworkData
 {
 protected:
 	U32 mFlags;
diff --git a/indra/llprimitive/llprimtexturelist.h b/indra/llprimitive/llprimtexturelist.h
index 49c636e40f1866004e0831facd4a2f4d7f7cfc5d..5718ec2fb781c8db39a912fad6b066d2fc94b566 100644
--- a/indra/llprimitive/llprimtexturelist.h
+++ b/indra/llprimitive/llprimtexturelist.h
@@ -118,10 +118,7 @@ class LLPrimTextureList
 protected:
 	texture_list_t mEntryList;
 private:
-	LLPrimTextureList(const LLPrimTextureList& other_list)
-	{
-		// private so that it can't be used
-	}
+	LLPrimTextureList(const LLPrimTextureList& other_list) = delete;
 };
 
 #endif
diff --git a/indra/llprimitive/lltextureanim.cpp b/indra/llprimitive/lltextureanim.cpp
index 7c48e57a1a1a2eac954782bc624430df324e632f..84b0fa4b02ebbeae62033d59da07d097d9b70290 100644
--- a/indra/llprimitive/lltextureanim.cpp
+++ b/indra/llprimitive/lltextureanim.cpp
@@ -37,12 +37,6 @@ LLTextureAnim::LLTextureAnim()
 	reset();
 }
 
-
-LLTextureAnim::~LLTextureAnim()
-{
-}
-
-
 void LLTextureAnim::reset()
 {
 	mMode = 0;
diff --git a/indra/llprimitive/lltextureanim.h b/indra/llprimitive/lltextureanim.h
index f0d9f9df5cc951a6226f9a13518831334533a5dd..4d0cd43ee1c46bae9a7b81c0f08a719bc6455284 100644
--- a/indra/llprimitive/lltextureanim.h
+++ b/indra/llprimitive/lltextureanim.h
@@ -37,7 +37,7 @@ class LLTextureAnim
 {
 public:
 	LLTextureAnim();
-	virtual ~LLTextureAnim();
+	virtual ~LLTextureAnim() = default;
 
 	virtual void reset();
 	void packTAMessage(LLMessageSystem *mesgsys) const;
diff --git a/indra/llprimitive/lltreeparams.cpp b/indra/llprimitive/lltreeparams.cpp
index 19a6db20ae56bd9421b6aef09676dccf44723e20..86442288ee6b9eddfa4352d2691a49d14f7a7a44 100644
--- a/indra/llprimitive/lltreeparams.cpp
+++ b/indra/llprimitive/lltreeparams.cpp
@@ -165,12 +165,7 @@ LLTreeParams::LLTreeParams()
 	mLeafQuality = 1.25;
 }
 
-LLTreeParams::~LLTreeParams()
-{
-
-}
-
-F32 LLTreeParams::ShapeRatio(EShapeRatio shape, F32 ratio) 
+F32 LLTreeParams::ShapeRatio(EShapeRatio shape, F32 ratio)
 {
 	switch (shape) {
 		case (SR_CONICAL): 
diff --git a/indra/llprimitive/lltreeparams.h b/indra/llprimitive/lltreeparams.h
index 6e2b47c0e9653f28f987bf24d1c6e7ee3a5c0add..94f83071902dcd9e64284087287ff5f58488524b 100644
--- a/indra/llprimitive/lltreeparams.h
+++ b/indra/llprimitive/lltreeparams.h
@@ -42,7 +42,7 @@ class LLTreeParams
 {
 public:
 	LLTreeParams();
-	virtual ~LLTreeParams();
+	virtual ~LLTreeParams() = default;
 
 	static F32 ShapeRatio(EShapeRatio shape, F32 ratio);
 
diff --git a/indra/llvfs/lldir_linux.cpp b/indra/llvfs/lldir_linux.cpp
index 528af3964c5ee7011736c468cb57dd32053beb0c..c0bd142596d5d30e6f8dc68cbcd60b04d877851b 100644
--- a/indra/llvfs/lldir_linux.cpp
+++ b/indra/llvfs/lldir_linux.cpp
@@ -139,10 +139,6 @@ LLDir_Linux::LLDir_Linux()
 	mTempDir = "/tmp";
 }
 
-LLDir_Linux::~LLDir_Linux()
-{
-}
-
 // Implementation
 
 
diff --git a/indra/llvfs/lldir_linux.h b/indra/llvfs/lldir_linux.h
index e83a020ba4d3066481572733331171b8c2c85577..d6be5c6ceee6b596f8e12789b19db551f93c34d2 100644
--- a/indra/llvfs/lldir_linux.h
+++ b/indra/llvfs/lldir_linux.h
@@ -36,11 +36,11 @@
 #include <dirent.h>
 #include <errno.h>
 
-class LLDir_Linux : public LLDir
+class LLDir_Linux final : public LLDir
 {
 public:
 	LLDir_Linux();
-	virtual ~LLDir_Linux();
+	virtual ~LLDir_Linux() = default;
 
 	/*virtual*/ void initAppDirs(const std::string &app_name,
 		const std::string& app_read_only_data_dir);
diff --git a/indra/llvfs/lldir_mac.h b/indra/llvfs/lldir_mac.h
index 558727ebbc04d19f3dcc9cc182aa56448a6360db..8806a9c28220426aa31458540f82240b86253220 100644
--- a/indra/llvfs/lldir_mac.h
+++ b/indra/llvfs/lldir_mac.h
@@ -35,7 +35,7 @@
 
 #include <dirent.h>
 
-class LLDir_Mac : public LLDir
+class LLDir_Mac final : public LLDir
 {
 public:
 	LLDir_Mac();
diff --git a/indra/llvfs/lldir_win32.h b/indra/llvfs/lldir_win32.h
index 450efaf9da47acafa16b9842f64757651fadca54..37f78ab281c3242e2e5ae91b4cac157977a3f232 100644
--- a/indra/llvfs/lldir_win32.h
+++ b/indra/llvfs/lldir_win32.h
@@ -33,7 +33,7 @@
 
 #include "lldir.h"
 
-class LLDir_Win32 : public LLDir
+class LLDir_Win32 final : public LLDir
 {
 public:
 	LLDir_Win32();
diff --git a/indra/llvfs/lldiriterator.cpp b/indra/llvfs/lldiriterator.cpp
index 8c2c622ea007313413c278eccd8ed5e87a8d5f4b..cbd67afaef0c594a33a3c05197074aa70fab3d89 100644
--- a/indra/llvfs/lldiriterator.cpp
+++ b/indra/llvfs/lldiriterator.cpp
@@ -38,7 +38,7 @@ class LLDirIterator::Impl
 {
 public:
 	Impl(const std::string &dirname, const std::string &mask);
-	~Impl();
+	~Impl() = default;
 
 	bool next(std::string &fname);
 
@@ -107,10 +107,6 @@ LLDirIterator::Impl::Impl(const std::string &dirname, const std::string &mask)
 	mIsValid = true;
 }
 
-LLDirIterator::Impl::~Impl()
-{
-}
-
 bool LLDirIterator::Impl::next(std::string &fname)
 {
 	fname = "";
diff --git a/indra/llwindow/llkeyboardsdl.h b/indra/llwindow/llkeyboardsdl.h
index 7d2304a46b79cd777f49ec79a80f38d2a7132e7b..b156ae33f0be434b0e9da87db013a1113d33132b 100644
--- a/indra/llwindow/llkeyboardsdl.h
+++ b/indra/llwindow/llkeyboardsdl.h
@@ -30,7 +30,7 @@
 #include "llkeyboard.h"
 #include <SDL.h>
 
-class LLKeyboardSDL : public LLKeyboard
+class LLKeyboardSDL final : public LLKeyboard
 {
 public:
 	LLKeyboardSDL();
diff --git a/indra/llwindow/llwindowsdl.h b/indra/llwindow/llwindowsdl.h
index d4f7ae1510a97858caa71b9666f235324261fedd..e293707dda7dbaa601151ece4d3cb04e4e0ca8a0 100644
--- a/indra/llwindow/llwindowsdl.h
+++ b/indra/llwindow/llwindowsdl.h
@@ -50,7 +50,7 @@
 #undef require
 
 
-class LLWindowSDL : public LLWindow
+class LLWindowSDL final : public LLWindow
 {
 public:
 	/*virtual*/ void show();
diff --git a/indra/llxml/llcontrol.h b/indra/llxml/llcontrol.h
index 54f90b6a741ee11feca3b7f676152a004107bcd5..138a8880fc119e6fc0d95a7e2c36f6cac852d430 100644
--- a/indra/llxml/llcontrol.h
+++ b/indra/llxml/llcontrol.h
@@ -90,7 +90,7 @@ typedef enum e_control_type
 	TYPE_COUNT
 } eControlType;
 
-class LLControlVariable : public LLRefCount
+class LLControlVariable final : public LLRefCount
 {
 	LOG_CLASS(LLControlVariable);
 
@@ -187,7 +187,7 @@ T convert_from_llsd(const LLSD& sd, eControlType type, const std::string& contro
 }
 
 //const U32 STRING_CACHE_SIZE = 10000;
-class LLControlGroup : public LLInstanceTracker<LLControlGroup, std::string>
+class LLControlGroup final : public LLInstanceTracker<LLControlGroup, std::string>
 {
 	LOG_CLASS(LLControlGroup);
 
@@ -326,7 +326,7 @@ class LLControlGroup : public LLInstanceTracker<LLControlGroup, std::string>
 //! without have to manually create and bind a listener to a local
 //! object.
 template <class T>
-class LLControlCache : public LLRefCount, public LLInstanceTracker<LLControlCache<T>, std::string>
+class LLControlCache final : public LLRefCount, public LLInstanceTracker<LLControlCache<T>, std::string>
 {
 public:
 	// This constructor will declare a control if it doesn't exist in the contol group
diff --git a/indra/newview/llbreastmotion.h b/indra/newview/llbreastmotion.h
index aa0fdf9f8b155f36af0623de8020fbaf687e5aa7..be4f54bc889baf6b35c3743c1d7ecf1411b6874b 100644
--- a/indra/newview/llbreastmotion.h
+++ b/indra/newview/llbreastmotion.h
@@ -41,7 +41,7 @@ class LLViewerVisualParam;
 //-----------------------------------------------------------------------------
 // class LLBreastMotion
 //-----------------------------------------------------------------------------
-class LLBreastMotion :
+class LLBreastMotion final :
 	public LLMotion
 {
 public:
diff --git a/indra/newview/llcolorswatch.h b/indra/newview/llcolorswatch.h
index 380fdccfa37ace92d649699b0472921d31d4dd24..1c3cb12c86c3edd128feb014b65e27356227ea26 100644
--- a/indra/newview/llcolorswatch.h
+++ b/indra/newview/llcolorswatch.h
@@ -38,7 +38,7 @@
 class LLColor4;
 class LLFloaterColorPicker;
 
-class LLColorSwatchCtrl
+class LLColorSwatchCtrl final
 : public LLUICtrl
 {
 public:
diff --git a/indra/newview/llemote.h b/indra/newview/llemote.h
index 4c516998dc69ae2384a01abe77d4438aebdf4302..99f3ac91bfdb5b01950ca447b06ed166cdae2817 100644
--- a/indra/newview/llemote.h
+++ b/indra/newview/llemote.h
@@ -44,7 +44,7 @@ class LLVisualParam;
 //-----------------------------------------------------------------------------
 // class LLEmote
 //-----------------------------------------------------------------------------
-class LLEmote :
+class LLEmote final :
 	public LLMotion
 {
 public:
diff --git a/indra/newview/llexpandabletextbox.h b/indra/newview/llexpandabletextbox.h
index aaf393277f053b92154e44593e781f25e597ba26..f80564fb1d6cade4467aae70a6329ccfa32277b0 100644
--- a/indra/newview/llexpandabletextbox.h
+++ b/indra/newview/llexpandabletextbox.h
@@ -35,7 +35,7 @@
  * if text doesn't fit into text box. After pressing "More" the text box will expand to show
  * all text. If text is still too big, a scroll bar will appear inside expanded text box.
  */
-class LLExpandableTextBox : public LLUICtrl
+class LLExpandableTextBox final : public LLUICtrl
 {
 protected:
 
diff --git a/indra/newview/llgroupiconctrl.h b/indra/newview/llgroupiconctrl.h
index 43e384d3e277746ef77889f5a23ea01d8d1484da..120ca07165cdcc5b2b85b29a4c3b161752c48d9f 100644
--- a/indra/newview/llgroupiconctrl.h
+++ b/indra/newview/llgroupiconctrl.h
@@ -37,7 +37,7 @@
  * It gets icon id by group id from the LLGroupMgr.
  * If group data is not loaded yet it subscribes as LLGroupMgr observer and requests necessary data.
  */
-class LLGroupIconCtrl
+class LLGroupIconCtrl final
 	: public LLIconCtrl, public LLGroupMgrObserver
 {
 public:
diff --git a/indra/newview/llgrouplist.h b/indra/newview/llgrouplist.h
index 063b50f5c50146623492657aa8caeb472ad36907..ce7e74c29444801332fdecfafa8c1ad1d6acad65 100644
--- a/indra/newview/llgrouplist.h
+++ b/indra/newview/llgrouplist.h
@@ -44,7 +44,7 @@
  * 
  * @see setNameFilter()
  */
-class LLGroupList: public LLFlatListViewEx, public LLOldEvents::LLSimpleListener
+class LLGroupList final : public LLFlatListViewEx, public LLOldEvents::LLSimpleListener
 {
 	LOG_CLASS(LLGroupList);
 public:
diff --git a/indra/newview/llhttpretrypolicy.h b/indra/newview/llhttpretrypolicy.h
index d71e114c5ddc90edfff66ffb3befa6f5317f82ec..d5bb957f4fc3c373aa37ecc4b9cb2f4e3d589dff 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;
@@ -62,7 +62,7 @@ class LLHTTPRetryPolicy: public LLThreadSafeRefCount
 
 // Very general policy with geometric back-off after failures,
 // up to a maximum delay, and maximum number of retries.
-class LLAdaptiveRetryPolicy: public LLHTTPRetryPolicy
+class LLAdaptiveRetryPolicy final : public LLHTTPRetryPolicy
 {
 public:
 	LLAdaptiveRetryPolicy(F32 min_delay, F32 max_delay, F32 backoff_factor, U32 max_retries, bool retry_on_4xx = false);
diff --git a/indra/newview/llhudicon.h b/indra/newview/llhudicon.h
index e00a985ddc0b96f7f98033a6077987271ec6ecc5..eaa19ad3618ab68b962ea4133820b639370e00fa 100644
--- a/indra/newview/llhudicon.h
+++ b/indra/newview/llhudicon.h
@@ -42,7 +42,7 @@
 // Renders a 2D icon billboard floating at the location specified.
 class LLViewerTexture;
 
-class LLHUDIcon : public LLHUDObject
+class LLHUDIcon final : public LLHUDObject
 {
 friend class LLHUDObject;
 
diff --git a/indra/newview/llhudnametag.h b/indra/newview/llhudnametag.h
index 38a4f184153c09eae0264e2a64aa098c00a77c2a..98f957a09ad33d28330ee173e3cf6d6f97c7adde 100644
--- a/indra/newview/llhudnametag.h
+++ b/indra/newview/llhudnametag.h
@@ -48,7 +48,7 @@ struct llhudnametag_further_away
 	bool operator()(const LLPointer<LLHUDNameTag>& lhs, const LLPointer<LLHUDNameTag>& rhs) const;
 };
 
-class LLHUDNameTag : public LLHUDObject
+class LLHUDNameTag final : public LLHUDObject
 {
 protected:
 	class LLHUDTextSegment
diff --git a/indra/newview/llhudtext.h b/indra/newview/llhudtext.h
index 0be9eb4f2e98e5df862285deac1e16b7a7de96af..1a548cf9de7c278e38f5a6cbccb9e859b03082c2 100644
--- a/indra/newview/llhudtext.h
+++ b/indra/newview/llhudtext.h
@@ -47,7 +47,7 @@ struct lltextobject_further_away
 	bool operator()(const LLPointer<LLHUDText>& lhs, const LLPointer<LLHUDText>& rhs) const;
 };
 
-class LLHUDText : public LLHUDObject
+class LLHUDText final : public LLHUDObject
 {
 protected:
 	class LLHUDTextSegment
diff --git a/indra/newview/llmediactrl.h b/indra/newview/llmediactrl.h
index 865818de06fb924201ecf5b26d737658961c7d0d..2cb98b2fada292293450492510b41ff0b7721e5e 100644
--- a/indra/newview/llmediactrl.h
+++ b/indra/newview/llmediactrl.h
@@ -38,7 +38,7 @@ class LLContextMenu;
 
 ////////////////////////////////////////////////////////////////////////////////
 //
-class LLMediaCtrl :
+class LLMediaCtrl final :
 	public LLPanel,
 	public LLViewerMediaObserver,
 	public LLViewerMediaEventEmitter,
diff --git a/indra/newview/llphysicsmotion.h b/indra/newview/llphysicsmotion.h
index b246fa99bb5e8190bb99f5b6a9736c544c8a0d03..593128308f5aaef89d2366ae4dc889e01c2f621e 100644
--- a/indra/newview/llphysicsmotion.h
+++ b/indra/newview/llphysicsmotion.h
@@ -41,7 +41,7 @@ class LLPhysicsMotion;
 //-----------------------------------------------------------------------------
 // class LLPhysicsMotion
 //-----------------------------------------------------------------------------
-class LLPhysicsMotionController :
+class LLPhysicsMotionController final :
 	public LLMotion
 {
 public:
diff --git a/indra/newview/llviewerwindow.h b/indra/newview/llviewerwindow.h
index 4afe623290a214223d9c862690d346f5e353437a..ba7e3a56553ec3a27a771a315558ea95b9279e74 100644
--- a/indra/newview/llviewerwindow.h
+++ b/indra/newview/llviewerwindow.h
@@ -139,7 +139,7 @@ class LLPickInfo
 
 static const U32 MAX_SNAPSHOT_IMAGE_SIZE = 6 * 1024; // max snapshot image size 6144 * 6144
 
-class LLViewerWindow : public LLWindowCallbacks
+class LLViewerWindow final : public LLWindowCallbacks
 {
 public:
 	//
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index bee264d13f74fa7d8971c6eb3dccf67dff039ebb..c9c874a1424d06edc3a6c6f43f18eb477ff934c9 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -258,7 +258,7 @@ struct LLAppearanceMessageContents: public LLRefCount
 //-----------------------------------------------------------------------------
 // class LLBodyNoiseMotion
 //-----------------------------------------------------------------------------
-class LLBodyNoiseMotion :
+class LLBodyNoiseMotion final :
 	public LLMotion
 {
 public:
@@ -363,7 +363,7 @@ class LLBodyNoiseMotion :
 //-----------------------------------------------------------------------------
 // class LLBreatheMotionRot
 //-----------------------------------------------------------------------------
-class LLBreatheMotionRot :
+class LLBreatheMotionRot final :
 	public LLMotion
 {
 public:
@@ -476,7 +476,7 @@ class LLBreatheMotionRot :
 //-----------------------------------------------------------------------------
 // class LLPelvisFixMotion
 //-----------------------------------------------------------------------------
-class LLPelvisFixMotion :
+class LLPelvisFixMotion final :
 	public LLMotion
 {
 public:
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp
index 3f7d44e747773d8342cc01f83d8072f9fe56a01e..a164344cdaa6550415d86da5fd979c8d6c63eb85 100644
--- a/indra/newview/llvovolume.cpp
+++ b/indra/newview/llvovolume.cpp
@@ -114,7 +114,7 @@ static LLTrace::BlockTimerStatHandle FTM_VOLUME_TEXTURES("Volume Textures");
 extern BOOL gGLDebugLoggingEnabled;
 
 // Implementation class of LLMediaDataClientObject.  See llmediadataclient.h
-class LLMediaDataClientObjectImpl : public LLMediaDataClientObject
+class LLMediaDataClientObjectImpl final : public LLMediaDataClientObject
 {
 public:
 	LLMediaDataClientObjectImpl(LLVOVolume *obj, bool isNew) : mObject(obj), mNew(isNew)