[Bf-blender-cvs] [314e40b] master: Hopefully fix broken windows after recent i18n split.

Bastien Montagne noreply at git.blender.org
Wed Aug 19 10:10:57 CEST 2015


Commit: 314e40b6ce461c5d1fb9cee9eabd909c0d9ab724
Author: Bastien Montagne
Date:   Wed Aug 19 10:09:08 2015 +0200
Branches: master
https://developer.blender.org/rB314e40b6ce461c5d1fb9cee9eabd909c0d9ab724

Hopefully fix broken windows after recent i18n split.

We need to include BLI_utildefines.h when using __func__...

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

M	source/blender/blenfont/intern/blf_font_i18n.c
M	source/blender/blentranslation/intern/blt_lang.c

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

diff --git a/source/blender/blenfont/intern/blf_font_i18n.c b/source/blender/blenfont/intern/blf_font_i18n.c
index 96cc428..b6ff7ed 100644
--- a/source/blender/blenfont/intern/blf_font_i18n.c
+++ b/source/blender/blenfont/intern/blf_font_i18n.c
@@ -40,6 +40,7 @@
 #include "BLI_fileops.h"
 #include "BLI_path_util.h"
 #include "BLI_string.h"
+#include "BLI_utildefines.h"
 
 #include "BKE_appdir.h"
 
diff --git a/source/blender/blentranslation/intern/blt_lang.c b/source/blender/blentranslation/intern/blt_lang.c
index 49cc95c..cd45452 100644
--- a/source/blender/blentranslation/intern/blt_lang.c
+++ b/source/blender/blentranslation/intern/blt_lang.c
@@ -40,12 +40,13 @@
 #include "RNA_types.h"
 
 #include "BLT_translation.h"
-#include "BLT_lang.h" /* own include */
+#include "BLT_lang.h"  /* own include */
 
 #include "BLI_fileops.h"
 #include "BLI_linklist.h"
 #include "BLI_path_util.h"
 #include "BLI_string.h"
+#include "BLI_utildefines.h"
 
 #include "BKE_appdir.h"




More information about the Bf-blender-cvs mailing list