Skip to content
Snippets Groups Projects
Commit 3db948cf authored by Ray Molenkamp's avatar Ray Molenkamp
Browse files

Fix: Build error on windows.

Use of undefined GSQueue type was causing build errors.
parent ff012441
Branches
Tags
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment