Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-10-19 04:52:55 +0300
committerCampbell Barton <campbell@blender.org>2022-10-19 04:52:55 +0300
commit8aca40652a5729895f1ba6efd2d03829785ae43f (patch)
tree41b9143ec031bd694513dda15d2b0214b836cc15 /source/blender/blenkernel/intern/instances.cc
parent8115d30dcaddeb399ea9a557694788b03505b2bd (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenkernel/intern/instances.cc')
-rw-r--r--source/blender/blenkernel/intern/instances.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/instances.cc b/source/blender/blenkernel/intern/instances.cc
index dd759453630..2f8acf477e2 100644
--- a/source/blender/blenkernel/intern/instances.cc
+++ b/source/blender/blenkernel/intern/instances.cc
@@ -266,7 +266,7 @@ bool Instances::owns_direct_data() const
void Instances::ensure_owns_direct_data()
{
for (const InstanceReference &const_reference : references_) {
- /* Const cast is fine because we are not changing anything that would change the hash of the
+ /* `const` cast is fine because we are not changing anything that would change the hash of the
* reference. */
InstanceReference &reference = const_cast<InstanceReference &>(const_reference);
reference.ensure_owns_direct_data();