[Bf-blender-cvs] [d095fcd6b41] master: Cleanup: Fix build error after previous commit

Hans Goudey noreply at git.blender.org
Sun May 22 20:26:26 CEST 2022


Commit: d095fcd6b417e7b2d70d9c6ffd9fcf900935c0ec
Author: Hans Goudey
Date:   Sun May 22 20:26:25 2022 +0200
Branches: master
https://developer.blender.org/rBd095fcd6b417e7b2d70d9c6ffd9fcf900935c0ec

Cleanup: Fix build error after previous commit

I'm not sure how that happened, sorry for the noise.

===================================================================

M	source/blender/blenkernel/intern/customdata.cc

===================================================================

diff --git a/source/blender/blenkernel/intern/customdata.cc b/source/blender/blenkernel/intern/customdata.cc
index 104b42de654..27e8bf96dc6 100644
--- a/source/blender/blenkernel/intern/customdata.cc
+++ b/source/blender/blenkernel/intern/customdata.cc
@@ -5154,7 +5154,7 @@ static void write_mdisps(BlendWriter *writer, int count, const MDisps *mdlist, i
   if (mdlist) {
     BLO_write_struct_array(writer, MDisps, count, mdlist);
     for (int i = 0; i < count; i++) {
-      MDisps *md = &mdlist[i];
+      const MDisps *md = &mdlist[i];
       if (md->disps) {
         if (!external) {
           BLO_write_float3_array(writer, md->totdisp, &md->disps[0][0]);



More information about the Bf-blender-cvs mailing list