From e61a10ec5b6b84fcb5c27e8e308022d0094f8736 Mon Sep 17 00:00:00 2001 From: Josh Bell Date: Mon, 4 Jun 2007 18:46:59 +0000 Subject: svn merge -r 62602:62831 svn+ssh://svn.lindenlab.com/svn/linden/branches/maintenance --> release --- indra/llmath/lloctree.h | 1 - indra/llmath/lltreenode.h | 1 - indra/llmath/llvolume.h | 22 +++++++++++++--------- 3 files changed, 13 insertions(+), 11 deletions(-) (limited to 'indra/llmath') diff --git a/indra/llmath/lloctree.h b/indra/llmath/lloctree.h index f7ad363206..97f9576767 100644 --- a/indra/llmath/lloctree.h +++ b/indra/llmath/lloctree.h @@ -37,7 +37,6 @@ public: typedef LLTreeListener BaseType; typedef LLOctreeNode oct_node; - virtual ~LLOctreeListener() { }; virtual void handleChildAddition(const oct_node* parent, oct_node* child) = 0; virtual void handleChildRemoval(const oct_node* parent, const oct_node* child) = 0; }; diff --git a/indra/llmath/lltreenode.h b/indra/llmath/lltreenode.h index cdc52cf90a..67c6cb631a 100644 --- a/indra/llmath/lltreenode.h +++ b/indra/llmath/lltreenode.h @@ -37,7 +37,6 @@ template class LLTreeListener: public LLRefCount { public: - virtual ~LLTreeListener() { }; virtual void handleInsertion(const LLTreeNode* node, T* data) = 0; virtual void handleRemoval(const LLTreeNode* node, T* data) = 0; virtual void handleDestruction(const LLTreeNode* node) = 0; diff --git a/indra/llmath/llvolume.h b/indra/llmath/llvolume.h index 3ce3058887..23c29ae310 100644 --- a/indra/llmath/llvolume.h +++ b/indra/llmath/llvolume.h @@ -615,12 +615,14 @@ protected: class LLProfile { public: - LLProfile(const LLProfileParams ¶ms) : mParams(params) + LLProfile(const LLProfileParams ¶ms) + : mParams(params), + mOpen(FALSE), + mConcave(FALSE), + mDirty(TRUE), + mTotalOut(0), + mTotal(2) { - mTotal = 2; - mTotalOut = 0; - mDirty = TRUE; - mConcave = FALSE; } ~LLProfile(); @@ -690,11 +692,13 @@ public: }; public: - LLPath(const LLPathParams ¶ms) : mParams(params) + LLPath(const LLPathParams ¶ms) + : mParams(params), + mOpen(FALSE), + mTotal(0), + mDirty(TRUE), + mStep(1) { - mOpen = FALSE; - mDirty = TRUE; - mStep = 1; } virtual ~LLPath(); -- cgit v1.3