diff options
author | Henri Beauchamp <sldev@free.fr> | 2023-02-07 22:18:44 +0100 |
---|---|---|
committer | Henri Beauchamp <sldev@free.fr> | 2023-02-07 22:18:44 +0100 |
commit | c3ab9487245ac77016f3b651e2db47d239941659 (patch) | |
tree | 9cb9f0798dcd8e0a8428f965ac9ee845c14dec17 /indra/newview/llinventorymodel.h | |
parent | bf7faa3267e549b01131c6746202a5b6cda8e68a (diff) |
Added a digest_t typedef to clarify the usage of the digest LLUUID
As suggested in comments for previous commit.
Diffstat (limited to 'indra/newview/llinventorymodel.h')
-rw-r--r-- | indra/newview/llinventorymodel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodel.h b/indra/newview/llinventorymodel.h index ac10488d14..ef4a7d984d 100644 --- a/indra/newview/llinventorymodel.h +++ b/indra/newview/llinventorymodel.h @@ -256,8 +256,9 @@ public: cat_array_t*& categories, item_array_t*& items) const; + typedef LLUUID digest_t; // To clarify the actual usage of this "UUID" // Compute a hash of direct descendant names (for detecting child name changes) - LLUUID hashDirectDescendentNames(const LLUUID& cat_id) const; + digest_t hashDirectDescendentNames(const LLUUID& cat_id) const; // Starting with the object specified, add its descendants to the // array provided, but do not add the inventory object specified |