diff options
author | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-05-30 15:41:36 +0200 |
---|---|---|
committer | Ansariel <ansariel.hiller@phoenixviewer.com> | 2024-05-30 15:41:36 +0200 |
commit | cb3bd8865aa0f9fb8a247ea595cf1973057ba91f (patch) | |
tree | 5694572bbbb030ab1bd547455c4215034cf120de /indra/llprimitive | |
parent | c082f6f67a6dcd3437d1f2413932fef8cdf7de07 (diff) |
Fix a bunch of uninitialized variable warnings that showed up in Visual Studio
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/llmodel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/llmodel.h b/indra/llprimitive/llmodel.h index ae195525ef..20d643d642 100644 --- a/indra/llprimitive/llmodel.h +++ b/indra/llprimitive/llmodel.h @@ -357,7 +357,7 @@ public: protected: LLUUID mDiffuseMapID; - void* mOpaqueData; // allow refs to viewer/platform-specific structs for each material + void* mOpaqueData{ nullptr }; // allow refs to viewer/platform-specific structs for each material // currently only stores an LLPointer< LLViewerFetchedTexture > > to // maintain refs to textures associated with each material for free // ref counting. |