[Bf-blender-cvs] [3db948cffe4] master: Fix: Build error on windows.

Ray Molenkamp noreply at git.blender.org
Sun Mar 1 21:59:56 CET 2020


Commit: 3db948cffe48184b8f828ef9fce13ff666c248f0
Author: Ray Molenkamp
Date:   Sun Mar 1 13:59:51 2020 -0700
Branches: master
https://developer.blender.org/rB3db948cffe48184b8f828ef9fce13ff666c248f0

Fix: Build error on windows.

Use of undefined GSQueue type was causing build errors.

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

M	source/blender/editors/sculpt_paint/sculpt_intern.h

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

diff --git a/source/blender/editors/sculpt_paint/sculpt_intern.h b/source/blender/editors/sculpt_paint/sculpt_intern.h
index 4b12947a37d..91656cb2ad5 100644
--- a/source/blender/editors/sculpt_paint/sculpt_intern.h
+++ b/source/blender/editors/sculpt_paint/sculpt_intern.h
@@ -30,6 +30,7 @@
 
 #include "BLI_bitmap.h"
 #include "BLI_threads.h"
+#include "BLI_gsqueue.h"
 
 #include "BKE_paint.h"
 #include "BKE_pbvh.h"
@@ -173,7 +174,7 @@ void SCULPT_flip_quat_by_symm_area(float quat[3],
 
 /* Flood Fill. */
 typedef struct {
-  struct GSQueue *queue;
+  GSQueue *queue;
   char *visited_vertices;
 } SculptFloodFill;



More information about the Bf-blender-cvs mailing list