aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llvoclouds.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llvoclouds.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/newview/llvoclouds.h b/linden/indra/newview/llvoclouds.h
index 5d9fc72..172d622 100644
--- a/linden/indra/newview/llvoclouds.h
+++ b/linden/indra/newview/llvoclouds.h
@@ -43,7 +43,6 @@ class LLVOClouds : public LLAlphaObject
43{ 43{
44public: 44public:
45 LLVOClouds(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp ); 45 LLVOClouds(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp );
46 virtual ~LLVOClouds();
47 46
48 // Initialize data that's only inited once per class. 47 // Initialize data that's only inited once per class.
49 static void initClass(); 48 static void initClass();
@@ -73,6 +72,8 @@ public:
73 72
74 void setCloudGroup(LLCloudGroup *cgp) { mCloudGroupp = cgp; } 73 void setCloudGroup(LLCloudGroup *cgp) { mCloudGroupp = cgp; }
75protected: 74protected:
75 virtual ~LLVOClouds();
76
76 LLCloudGroup *mCloudGroupp; 77 LLCloudGroup *mCloudGroupp;
77}; 78};
78 79