diff --git a/indra/llappearance/llavatarappearancedefines.cpp b/indra/llappearance/llavatarappearancedefines.cpp index bce43fec64299fb0fc71ad0d80ba22de8fc2388a..4fe26f594164c499ad9e5206b1ca2949feac9990 100644 --- a/indra/llappearance/llavatarappearancedefines.cpp +++ b/indra/llappearance/llavatarappearancedefines.cpp @@ -175,11 +175,6 @@ LLAvatarAppearanceDictionary::LLAvatarAppearanceDictionary() createAssociations(); } -//virtual -LLAvatarAppearanceDictionary::~LLAvatarAppearanceDictionary() -{ -} - // Baked textures are composites of textures; for each such composited texture, // map it to the baked texture. void LLAvatarAppearanceDictionary::createAssociations() diff --git a/indra/llappearance/llavatarappearancedefines.h b/indra/llappearance/llavatarappearancedefines.h index 88df23924148f22b8ffe89af6bc8326e5bbadf6c..04acfabcd01a8258e253d4dabbfffdd6c58de1dc 100644 --- a/indra/llappearance/llavatarappearancedefines.h +++ b/indra/llappearance/llavatarappearancedefines.h @@ -149,7 +149,7 @@ class LLAvatarAppearanceDictionary final : public LLSingleton<LLAvatarAppearance // Constructors and Destructors //-------------------------------------------------------------------- LLSINGLETON(LLAvatarAppearanceDictionary); - virtual ~LLAvatarAppearanceDictionary(); + virtual ~LLAvatarAppearanceDictionary() = default; private: void createAssociations(); diff --git a/indra/llappearance/llavatarjoint.cpp b/indra/llappearance/llavatarjoint.cpp index b6ff57f48651eff1af203ed8f1bdb660048dc60a..5375fc3fbc5ce3500305f66fee52cb3b27a7db92 100644 --- a/indra/llappearance/llavatarjoint.cpp +++ b/indra/llappearance/llavatarjoint.cpp @@ -76,15 +76,6 @@ void LLAvatarJoint::init() } -//----------------------------------------------------------------------------- -// ~LLAvatarJoint() -// Class Destructor -//----------------------------------------------------------------------------- -LLAvatarJoint::~LLAvatarJoint() -{ -} - - //-------------------------------------------------------------------- // setValid() //-------------------------------------------------------------------- diff --git a/indra/llappearance/llavatarjoint.h b/indra/llappearance/llavatarjoint.h index fec91503c787b863ca0a7223561649ce9a257dd4..d7e1df9cdf0c857060b3ef5f599f8e95745258d9 100644 --- a/indra/llappearance/llavatarjoint.h +++ b/indra/llappearance/llavatarjoint.h @@ -49,7 +49,7 @@ class LLAvatarJoint : LLAvatarJoint(S32 joint_num); // *TODO: Only used for LLVOAvatarSelf::mScreenp. *DOES NOT INITIALIZE mResetAfterRestoreOldXform* LLAvatarJoint(const std::string &name, LLJoint *parent = NULL); - virtual ~LLAvatarJoint(); + virtual ~LLAvatarJoint() = default; // Gets the validity of this joint BOOL getValid() { return mValid; } @@ -125,7 +125,7 @@ class LLAvatarJointCollisionVolume : public LLAvatarJoint { public: LLAvatarJointCollisionVolume(); - virtual ~LLAvatarJointCollisionVolume() {}; + virtual ~LLAvatarJointCollisionVolume() = default; /*virtual*/ BOOL inheritScale() { return TRUE; } /*virtual*/ U32 render( F32 pixelArea, BOOL first_pass = TRUE, BOOL is_dummy = FALSE ); diff --git a/indra/llappearance/lldriverparam.cpp b/indra/llappearance/lldriverparam.cpp index 062f9ceddea48177ac1a1ba7735180e7332d7b31..9e25c138d0f26994fe9742547746a63ed7e73b64 100644 --- a/indra/llappearance/lldriverparam.cpp +++ b/indra/llappearance/lldriverparam.cpp @@ -185,10 +185,6 @@ LLDriverParam::LLDriverParam(const LLDriverParam& pOther) llassert((mWearablep == NULL) || mAvatarAppearance->isSelf()); } -LLDriverParam::~LLDriverParam() -{ -} - BOOL LLDriverParam::setInfo(LLDriverParamInfo *info) { llassert(mInfo == NULL); diff --git a/indra/llappearance/lldriverparam.h b/indra/llappearance/lldriverparam.h index 9c1cfb163e6d4e015eb0045becf978a3d92751e0..dd89092954ecf5c5b0a2c9e22154d7aa53000e63 100644 --- a/indra/llappearance/lldriverparam.h +++ b/indra/llappearance/lldriverparam.h @@ -63,7 +63,7 @@ class LLDriverParamInfo final : public LLViewerVisualParamInfo friend class LLDriverParam; public: LLDriverParamInfo(); - /*virtual*/ ~LLDriverParamInfo() {}; + /*virtual*/ ~LLDriverParamInfo() = default; /*virtual*/ BOOL parseXml(LLXmlTreeNode* node); @@ -85,7 +85,7 @@ class LLDriverParam final : public LLViewerVisualParam LLDriverParam() {} public: LLDriverParam(LLAvatarAppearance *appearance, LLWearable* wearable = NULL); - ~LLDriverParam(); + ~LLDriverParam() = default; void* operator new(size_t size) { diff --git a/indra/llappearance/llpolymesh.h b/indra/llappearance/llpolymesh.h index 83659d9514c30ac9c895ad98e8e708253b8194d8..479a1d2a0296983a672692a869904e7560550d43 100644 --- a/indra/llappearance/llpolymesh.h +++ b/indra/llappearance/llpolymesh.h @@ -146,7 +146,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/llappearance/llpolymorph.h b/indra/llappearance/llpolymorph.h index c6133cd83119605a7f2085db8ea9e1f37966658b..980ca930f0c51fbcdabfe845c738e8c0f9a243ee 100644 --- a/indra/llappearance/llpolymorph.h +++ b/indra/llappearance/llpolymorph.h @@ -137,7 +137,7 @@ class LLPolyMorphTargetInfo : public LLViewerVisualParamInfo friend class LLPolyMorphTarget; public: LLPolyMorphTargetInfo(); - /*virtual*/ ~LLPolyMorphTargetInfo() {}; + /*virtual*/ ~LLPolyMorphTargetInfo() = default; /*virtual*/ BOOL parseXml(LLXmlTreeNode* node); diff --git a/indra/llappearance/llpolyskeletaldistortion.cpp b/indra/llappearance/llpolyskeletaldistortion.cpp index d61d5c6491f3aee80b0c16ab83a0cbc1c7851690..f2cd2229c28ed786255a60d13765aea9ce5983d1 100644 --- a/indra/llappearance/llpolyskeletaldistortion.cpp +++ b/indra/llappearance/llpolyskeletaldistortion.cpp @@ -126,13 +126,6 @@ LLPolySkeletalDistortion::LLPolySkeletalDistortion(const LLPolySkeletalDistortio { } -//----------------------------------------------------------------------------- -// ~LLPolySkeletalDistortion() -//----------------------------------------------------------------------------- -LLPolySkeletalDistortion::~LLPolySkeletalDistortion() -{ -} - BOOL LLPolySkeletalDistortion::setInfo(LLPolySkeletalDistortionInfo *info) { if (info->mID < 0) diff --git a/indra/llappearance/llpolyskeletaldistortion.h b/indra/llappearance/llpolyskeletaldistortion.h index ab1a132d1902f6de8962edddfecda97ef996651d..8fd1e1dba16aba8f0c050d623a5fc50108c52e04 100644 --- a/indra/llappearance/llpolyskeletaldistortion.h +++ b/indra/llappearance/llpolyskeletaldistortion.h @@ -69,7 +69,7 @@ class LLPolySkeletalDistortionInfo : public LLViewerVisualParamInfo public: LLPolySkeletalDistortionInfo(); - /*virtual*/ ~LLPolySkeletalDistortionInfo() {}; + /*virtual*/ ~LLPolySkeletalDistortionInfo() = default; /*virtual*/ BOOL parseXml(LLXmlTreeNode* node); @@ -109,7 +109,7 @@ class LLPolySkeletalDistortion : public LLViewerVisualParam } LLPolySkeletalDistortion(LLAvatarAppearance *avatarp); - ~LLPolySkeletalDistortion(); + ~LLPolySkeletalDistortion() = default; // Special: These functions are overridden by child classes LLPolySkeletalDistortionInfo* getInfo() const { return (LLPolySkeletalDistortionInfo*)mInfo; } diff --git a/indra/llappearance/lltexglobalcolor.cpp b/indra/llappearance/lltexglobalcolor.cpp index 3df2254b1423ec8477b270050b38dfe320b6e12a..01cc01b2de917d21f082f11537427cdaa72b5e6d 100644 --- a/indra/llappearance/lltexglobalcolor.cpp +++ b/indra/llappearance/lltexglobalcolor.cpp @@ -42,12 +42,6 @@ LLTexGlobalColor::LLTexGlobalColor(LLAvatarAppearance* appearance) { } -LLTexGlobalColor::~LLTexGlobalColor() -{ - // mParamColorList are LLViewerVisualParam's and get deleted with ~LLCharacter() - //std::for_each(mParamColorList.begin(), mParamColorList.end(), DeletePointer()); -} - BOOL LLTexGlobalColor::setInfo(LLTexGlobalColorInfo *info) { llassert(mInfo == NULL); @@ -105,13 +99,6 @@ LLTexParamGlobalColor::LLTexParamGlobalColor(const LLTexParamGlobalColor& pOther { } -//----------------------------------------------------------------------------- -// ~LLTexParamGlobalColor -//----------------------------------------------------------------------------- -LLTexParamGlobalColor::~LLTexParamGlobalColor() -{ -} - /*virtual*/ LLViewerVisualParam* LLTexParamGlobalColor::cloneParam(LLWearable* wearable) const { return new LLTexParamGlobalColor(*this); diff --git a/indra/llappearance/lltexglobalcolor.h b/indra/llappearance/lltexglobalcolor.h index 3b426053dee2556bb06ef9ee24ba85624b9349fe..f4c8f6cd3bd88eae7e84ec13eb78973ab66d82cd 100644 --- a/indra/llappearance/lltexglobalcolor.h +++ b/indra/llappearance/lltexglobalcolor.h @@ -38,7 +38,9 @@ class LLTexGlobalColor { public: LLTexGlobalColor( LLAvatarAppearance* appearance ); - ~LLTexGlobalColor(); + + // mParamColorList are LLViewerVisualParam's and get deleted with ~LLCharacter() + ~LLTexGlobalColor() = default; LLTexGlobalColorInfo* getInfo() const { return mInfo; } // This sets mInfo and calls initialization functions @@ -73,7 +75,7 @@ class LLTexParamGlobalColor : public LLTexLayerParamColor { public: LLTexParamGlobalColor(LLTexGlobalColor *tex_color); - virtual ~LLTexParamGlobalColor(); + virtual ~LLTexParamGlobalColor() = default; /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable) const; protected: LLTexParamGlobalColor(const LLTexParamGlobalColor& pOther); diff --git a/indra/llappearance/lltexlayer.cpp b/indra/llappearance/lltexlayer.cpp index 4d073b85c5027f78fbeb3f1a4f29afc89e428037..eb57c2990ce2a756fb15c3f0124b1241e60ccd18 100644 --- a/indra/llappearance/lltexlayer.cpp +++ b/indra/llappearance/lltexlayer.cpp @@ -99,10 +99,6 @@ LLTexLayerSetBuffer::LLTexLayerSetBuffer(LLTexLayerSet* const owner) : { } -LLTexLayerSetBuffer::~LLTexLayerSetBuffer() -{ -} - void LLTexLayerSetBuffer::pushProjection() const { gGL.matrixMode(LLRender::MM_PROJECTION); @@ -1727,10 +1723,6 @@ LLTexLayerTemplate::LLTexLayerTemplate(const LLTexLayerTemplate &layer) : { } -LLTexLayerTemplate::~LLTexLayerTemplate() -{ -} - //----------------------------------------------------------------------------- // setInfo //----------------------------------------------------------------------------- diff --git a/indra/llappearance/lltexlayer.h b/indra/llappearance/lltexlayer.h index b7dda4d121b2c4c083dbba2f4b4479cdd5a7e1b2..5b2310b85e1a9fac5e63df4da114483be846eac2 100644 --- a/indra/llappearance/lltexlayer.h +++ b/indra/llappearance/lltexlayer.h @@ -63,7 +63,7 @@ class LLTexLayerInterface LLTexLayerInterface(LLTexLayerSet* const layer_set); LLTexLayerInterface(const LLTexLayerInterface &layer, LLWearable *wearable); - virtual ~LLTexLayerInterface() {} + virtual ~LLTexLayerInterface() = default; virtual BOOL render(S32 x, S32 y, S32 width, S32 height, LLRenderTarget* bound_target) = 0; virtual void deleteCaches() = 0; @@ -120,7 +120,7 @@ class LLTexLayerTemplate : public LLTexLayerInterface public: LLTexLayerTemplate(LLTexLayerSet* const layer_set, LLAvatarAppearance* const appearance); LLTexLayerTemplate(const LLTexLayerTemplate &layer); - /*virtual*/ ~LLTexLayerTemplate(); + /*virtual*/ ~LLTexLayerTemplate() = default; /*virtual*/ BOOL render(S32 x, S32 y, S32 width, S32 height, LLRenderTarget* bound_target); /*virtual*/ BOOL setInfo(const LLTexLayerInfo *info, LLWearable* wearable); // This sets mInfo and calls initialization functions /*virtual*/ BOOL blendAlphaTexture(S32 x, S32 y, S32 width, S32 height); // Multiplies a single alpha texture against the frame buffer @@ -270,7 +270,7 @@ class LLTexLayerSetBuffer : public virtual LLRefCount public: LLTexLayerSetBuffer(LLTexLayerSet* const owner); - virtual ~LLTexLayerSetBuffer(); + virtual ~LLTexLayerSetBuffer() = default; protected: void pushProjection() const; diff --git a/indra/llappearance/lltexlayerparams.cpp b/indra/llappearance/lltexlayerparams.cpp index ff682d69069ad15696e65852734dd488e227c39c..2b010cfc94cf17255aea366b5376858c56e7d0f6 100644 --- a/indra/llappearance/lltexlayerparams.cpp +++ b/indra/llappearance/lltexlayerparams.cpp @@ -439,10 +439,6 @@ LLTexLayerParamColor::LLTexLayerParamColor(const LLTexLayerParamColor& pOther) { } -LLTexLayerParamColor::~LLTexLayerParamColor() -{ -} - /*virtual*/ LLViewerVisualParam* LLTexLayerParamColor::cloneParam(LLWearable* wearable) const { return new LLTexLayerParamColor(*this); diff --git a/indra/llappearance/lltexlayerparams.h b/indra/llappearance/lltexlayerparams.h index 0cb2dedbff869d21e70f45f16ecf166c173a799a..d0eef8121a8b0b62da6e34c9e5ffd2bac77fe136 100644 --- a/indra/llappearance/lltexlayerparams.h +++ b/indra/llappearance/lltexlayerparams.h @@ -127,7 +127,7 @@ class LLTexLayerParamAlphaInfo : public LLViewerVisualParamInfo friend class LLTexLayerParamAlpha; public: LLTexLayerParamAlphaInfo(); - /*virtual*/ ~LLTexLayerParamAlphaInfo() {}; + /*virtual*/ ~LLTexLayerParamAlphaInfo() = default; /*virtual*/ BOOL parseXml(LLXmlTreeNode* node); @@ -171,7 +171,7 @@ class LLTexLayerParamColor : public LLTexLayerParam ll_aligned_free_16(ptr); } - /* virtual */ ~LLTexLayerParamColor(); + /* virtual */ ~LLTexLayerParamColor() = default; /*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable = NULL) const; @@ -207,7 +207,7 @@ class LLTexLayerParamColorInfo : public LLViewerVisualParamInfo public: LLTexLayerParamColorInfo(); - virtual ~LLTexLayerParamColorInfo() {}; + virtual ~LLTexLayerParamColorInfo() = default; BOOL parseXml( LLXmlTreeNode* node ); LLTexLayerParamColor::EColorOperation getOperation() const { return mOperation; } private: diff --git a/indra/llappearance/lltexturemanagerbridge.h b/indra/llappearance/lltexturemanagerbridge.h index 101704b16273751c95bca64a766f6ab2b757c596..db55e9e34e0600dac44f89b4534a026dcfb2d535 100644 --- a/indra/llappearance/lltexturemanagerbridge.h +++ b/indra/llappearance/lltexturemanagerbridge.h @@ -35,7 +35,7 @@ class LLTextureManagerBridge { public: - virtual ~LLTextureManagerBridge() {} + virtual ~LLTextureManagerBridge() = default; virtual LLPointer<LLGLTexture> getLocalTexture(BOOL usemipmaps = TRUE, BOOL generate_gl_tex = TRUE) = 0; virtual LLPointer<LLGLTexture> getLocalTexture(const U32 width, const U32 height, const U8 components, BOOL usemipmaps, BOOL generate_gl_tex = TRUE) = 0; diff --git a/indra/llappearance/llviewervisualparam.cpp b/indra/llappearance/llviewervisualparam.cpp index af8394b60ce9209fe92bde53ec38a2e55c18fbe7..9c7ac67102812216d043141e3045e24d52e3cfd8 100644 --- a/indra/llappearance/llviewervisualparam.cpp +++ b/indra/llappearance/llviewervisualparam.cpp @@ -50,10 +50,6 @@ LLViewerVisualParamInfo::LLViewerVisualParamInfo() { } -LLViewerVisualParamInfo::~LLViewerVisualParamInfo() -{ -} - //----------------------------------------------------------------------------- // parseXml() //----------------------------------------------------------------------------- @@ -135,13 +131,6 @@ LLViewerVisualParam::LLViewerVisualParam(const LLViewerVisualParam& pOther) { } -//----------------------------------------------------------------------------- -// ~LLViewerVisualParam() -//----------------------------------------------------------------------------- -LLViewerVisualParam::~LLViewerVisualParam() -{ -} - //----------------------------------------------------------------------------- // setInfo() //----------------------------------------------------------------------------- diff --git a/indra/llappearance/llviewervisualparam.h b/indra/llappearance/llviewervisualparam.h index 1a710c0ca691b21a6e5b9ac449bce76e4904d756..4140772a272b6f6261cb79a6cd4b764cb293692f 100644 --- a/indra/llappearance/llviewervisualparam.h +++ b/indra/llappearance/llviewervisualparam.h @@ -41,7 +41,7 @@ class LLViewerVisualParamInfo : public LLVisualParamInfo friend class LLViewerVisualParam; public: LLViewerVisualParamInfo(); - /*virtual*/ ~LLViewerVisualParamInfo(); + /*virtual*/ ~LLViewerVisualParamInfo() = default; /*virtual*/ BOOL parseXml(LLXmlTreeNode* node); @@ -70,7 +70,7 @@ class LLViewerVisualParam : public LLVisualParam { public: LLViewerVisualParam(); - virtual ~LLViewerVisualParam(); + virtual ~LLViewerVisualParam() = default; // Special: These functions are overridden by child classes LLViewerVisualParamInfo *getInfo() const { return (LLViewerVisualParamInfo*)mInfo; }; diff --git a/indra/llappearance/llwearabledata.cpp b/indra/llappearance/llwearabledata.cpp index 66417ce469cb4b6926eb90e731cce638be367f23..d31826c4bd7d3486076c46f81425ce0f2f9e8604 100644 --- a/indra/llappearance/llwearabledata.cpp +++ b/indra/llappearance/llwearabledata.cpp @@ -38,11 +38,6 @@ LLWearableData::LLWearableData() : { } -// virtual -LLWearableData::~LLWearableData() -{ -} - using namespace LLAvatarAppearanceDefines; LLWearable* LLWearableData::getWearable(const LLWearableType::EType type, U32 index) diff --git a/indra/llappearance/llwearabledata.h b/indra/llappearance/llwearabledata.h index cb274ca52453932f86a5ae34768ccc5b396d539c..ba1b0753ed94c0c2982d4694e781a3b74029b113 100644 --- a/indra/llappearance/llwearabledata.h +++ b/indra/llappearance/llwearabledata.h @@ -43,7 +43,7 @@ class LLWearableData //-------------------------------------------------------------------- public: LLWearableData(); - virtual ~LLWearableData(); + virtual ~LLWearableData() = default; void setAvatarAppearance(LLAvatarAppearance* appearance) { mAvatarAppearance = appearance; }