Skip to content
Snippets Groups Projects
Commit a9c4ed26 authored by Tofu Linden's avatar Tofu Linden
Browse files

Try for a slightly cunning fix to CID-352

Checker: UNINIT_CTOR
Function: LLInterp<float>::LLInterp()
File: /indra/llmath/llinterp.h
parent 44dc3c07
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ template <typename Type> ...@@ -54,7 +54,7 @@ template <typename Type>
class LLInterp class LLInterp
{ {
public: public:
LLInterp(); LLInterp();
virtual ~LLInterp() {} virtual ~LLInterp() {}
virtual void start(); virtual void start();
...@@ -151,6 +151,7 @@ class LLInterpFunc : public LLInterp<Type> ...@@ -151,6 +151,7 @@ class LLInterpFunc : public LLInterp<Type>
template <typename Type> template <typename Type>
LLInterp<Type>::LLInterp() LLInterp<Type>::LLInterp()
: mStartVal(Type()), mEndVal(Type()), mCurVal(Type())
{ {
mStartTime = 0.f; mStartTime = 0.f;
mEndTime = 1.f; mEndTime = 1.f;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment