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 <ideasman42@gmail.com>2021-03-24 08:43:17 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-24 11:34:44 +0300
commit865025c343ac38f649b671d74fb6903dc2ec87da (patch)
treeb386829f015eb691e66916bf30f92b6938ff65d0 /source/blender/windowmanager/gizmo
parent3f47df577d05478a324b6eca80df0a33c838fab8 (diff)
Cleanup: remove stdio.h header from MEM_guardedalloc.h
This was included for `FILE *` which isn't used in the header. Ref D10799
Diffstat (limited to 'source/blender/windowmanager/gizmo')
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c2
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c
index a9e24867351..ab5a265547d 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_group_type.c
@@ -18,6 +18,8 @@
* \ingroup wm
*/
+#include <stdio.h>
+
#include "BLI_ghash.h"
#include "BLI_utildefines.h"
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c
index efd7a13d02a..185854b1ca0 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_type.c
@@ -18,6 +18,8 @@
* \ingroup wm
*/
+#include <stdio.h>
+
#include "BLI_ghash.h"
#include "BLI_listbase.h"
#include "BLI_utildefines.h"