[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31381] trunk/blender/intern/audaspace/ intern/AUD_C-API.cpp: Audaspace: Trying to fix a reported compile bug about missing UINT64_C.

Joerg Mueller nexyon at gmail.com
Mon Aug 16 17:38:55 CEST 2010


Revision: 31381
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31381
Author:   nexyon
Date:     2010-08-16 17:38:55 +0200 (Mon, 16 Aug 2010)

Log Message:
-----------
Audaspace: Trying to fix a reported compile bug about missing UINT64_C.

Modified Paths:
--------------
    trunk/blender/intern/audaspace/intern/AUD_C-API.cpp

Modified: trunk/blender/intern/audaspace/intern/AUD_C-API.cpp
===================================================================
--- trunk/blender/intern/audaspace/intern/AUD_C-API.cpp	2010-08-16 14:55:45 UTC (rev 31380)
+++ trunk/blender/intern/audaspace/intern/AUD_C-API.cpp	2010-08-16 15:38:55 UTC (rev 31381)
@@ -30,15 +30,15 @@
 bool g_pyinitialized = false;
 #endif
 
+// needed for INT64_C
+#ifndef __STDC_CONSTANT_MACROS
+#define __STDC_CONSTANT_MACROS
+#endif
+
 #include <cstdlib>
 #include <cstring>
 #include <cmath>
 
-#ifndef __STDC_CONSTANT_MACROS
-// needed for INT64_C
-#define __STDC_CONSTANT_MACROS
-#endif
-
 #include "AUD_NULLDevice.h"
 #include "AUD_I3DDevice.h"
 #include "AUD_FileFactory.h"





More information about the Bf-blender-cvs mailing list