diff options
Diffstat (limited to 'indra/newview/llcloud.h')
-rw-r--r-- | indra/newview/llcloud.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llcloud.h b/indra/newview/llcloud.h index 06c2b5c9ff..3bb06c818b 100644 --- a/indra/newview/llcloud.h +++ b/indra/newview/llcloud.h @@ -110,7 +110,7 @@ public: BOOL inGroup(const LLCloudPuff &puff) const; F32 getDensity() const { return mDensity; } - S32 getNumPuffs() const { return mCloudPuffs.count(); } + S32 getNumPuffs() const { return (S32) mCloudPuffs.size(); } const LLCloudPuff &getPuff(const S32 i) { return mCloudPuffs[i]; } protected: LLCloudLayer *mCloudLayerp; @@ -118,7 +118,7 @@ protected: F32 mDensity; S32 mTargetPuffCount; - LLDynamicArray<LLCloudPuff> mCloudPuffs; + std::vector<LLCloudPuff> mCloudPuffs; LLPointer<LLVOClouds> mVOCloudsp; }; |