diff options
Diffstat (limited to 'indra/llmath')
| -rw-r--r-- | indra/llmath/llsimdtypes.h | 4 | ||||
| -rw-r--r-- | indra/llmath/llvector4a.h | 2 | ||||
| -rw-r--r-- | indra/llmath/llvector4logical.h | 2 | 
3 files changed, 4 insertions, 4 deletions
diff --git a/indra/llmath/llsimdtypes.h b/indra/llmath/llsimdtypes.h index 9db152adf8..11462170fb 100644 --- a/indra/llmath/llsimdtypes.h +++ b/indra/llmath/llsimdtypes.h @@ -60,7 +60,7 @@ public:      inline operator bool() const { return static_cast<const bool&>(m_bool); }  private: -    int m_bool; +    int m_bool{ 0 };  };  #if LL_WINDOWS @@ -118,7 +118,7 @@ public:      }  private: -    LLQuad mQ; +    LLQuad mQ{};  };  #endif //LL_SIMD_TYPES_H diff --git a/indra/llmath/llvector4a.h b/indra/llmath/llvector4a.h index 8f0ee4b739..ea80b33e2d 100644 --- a/indra/llmath/llvector4a.h +++ b/indra/llmath/llvector4a.h @@ -322,7 +322,7 @@ public:      inline operator LLQuad() const;  private: -    LLQuad mQ; +    LLQuad mQ{};  };  inline void update_min_max(LLVector4a& min, LLVector4a& max, const LLVector4a& p) diff --git a/indra/llmath/llvector4logical.h b/indra/llmath/llvector4logical.h index d08b5513d9..70759eef5c 100644 --- a/indra/llmath/llvector4logical.h +++ b/indra/llmath/llvector4logical.h @@ -120,7 +120,7 @@ public:  private: -    LLQuad mQ; +    LLQuad mQ{};  };  #endif //LL_VECTOR4ALOGICAL_H  | 
