Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
31b6f82d
Commit
31b6f82d
authored
2 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup
parent
ba7e84c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llcommon/lluuid.h
+2
-2
2 additions, 2 deletions
indra/llcommon/lluuid.h
indra/llprimitive/llmaterialid.h
+1
-1
1 addition, 1 deletion
indra/llprimitive/llmaterialid.h
with
3 additions
and
3 deletions
indra/llcommon/lluuid.h
+
2
−
2
View file @
31b6f82d
...
...
@@ -192,7 +192,7 @@ class LL_COMMON_API LLUUID
friend
std
::
size_t
hash_value
(
LLUUID
const
&
id
)
{
return
boost
::
hash_
rang
e
(
id
.
mData
,
id
.
mData
+
UUID_BYTES
);
return
boost
::
hash_
valu
e
(
id
.
mData
);
}
// xor functions. Useful since any two random uuids xored together
...
...
@@ -281,7 +281,7 @@ namespace std {
{
size_t
operator
()(
const
LLUUID
&
id
)
const
{
return
boost
::
hash_
rang
e
(
id
.
mData
,
id
.
mData
+
UUID_BYTES
);
return
boost
::
hash_
valu
e
(
id
.
mData
);
}
};
}
...
...
This diff is collapsed.
Click to expand it.
indra/llprimitive/llmaterialid.h
+
1
−
1
View file @
31b6f82d
...
...
@@ -140,7 +140,7 @@ class LLMaterialID
friend
std
::
size_t
hash_value
(
LLMaterialID
const
&
id
)
{
return
boost
::
hash_
rang
e
(
id
.
mID
,
id
.
mID
+
MATERIAL_ID_SIZE
);
return
boost
::
hash_
valu
e
(
id
.
mID
);
}
// END BOOST
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment