From 84b88dd7920f90c7a77dd38193ee31cdcb397b26 Mon Sep 17 00:00:00 2001 From: Rye Mutt <rye@alchemyviewer.org> Date: Sat, 6 Nov 2021 18:37:10 -0400 Subject: [PATCH] cleanup --- indra/llappearance/llavatarjoint.h | 2 +- indra/llfilesystem/lldiskcache.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llappearance/llavatarjoint.h b/indra/llappearance/llavatarjoint.h index d7e1df9cdf0..73e1e91b7f8 100644 --- a/indra/llappearance/llavatarjoint.h +++ b/indra/llappearance/llavatarjoint.h @@ -52,7 +52,7 @@ class LLAvatarJoint : virtual ~LLAvatarJoint() = default; // Gets the validity of this joint - BOOL getValid() { return mValid; } + BOOL getValid() const { return mValid; } // Sets the validity of this joint virtual void setValid( BOOL valid, BOOL recursive=FALSE ); diff --git a/indra/llfilesystem/lldiskcache.h b/indra/llfilesystem/lldiskcache.h index 2e244bf5b1e..68f04ec3008 100644 --- a/indra/llfilesystem/lldiskcache.h +++ b/indra/llfilesystem/lldiskcache.h @@ -64,7 +64,7 @@ #include "llsingleton.h" -class LLDiskCache : +class LLDiskCache final : public LLParamSingleton<LLDiskCache> { public: -- GitLab