[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [49999] branches/soc-2012-swiss_cheese/ source/blender/blenlib/BLI_smallhash.h: stdint.h is not available in MSVC

Jason Wilkins Jason.A.Wilkins at gmail.com
Sun Aug 19 05:03:53 CEST 2012


Revision: 49999
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=49999
Author:   jwilkins
Date:     2012-08-19 03:03:47 +0000 (Sun, 19 Aug 2012)
Log Message:
-----------
stdint.h is not available in MSVC

Modified Paths:
--------------
    branches/soc-2012-swiss_cheese/source/blender/blenlib/BLI_smallhash.h

Modified: branches/soc-2012-swiss_cheese/source/blender/blenlib/BLI_smallhash.h
===================================================================
--- branches/soc-2012-swiss_cheese/source/blender/blenlib/BLI_smallhash.h	2012-08-18 23:46:37 UTC (rev 49998)
+++ branches/soc-2012-swiss_cheese/source/blender/blenlib/BLI_smallhash.h	2012-08-19 03:03:47 UTC (rev 49999)
@@ -31,7 +31,11 @@
 /** \file BLI_smallhash.h
  *  \ingroup bli
  */
+
+#if !defined(_WIN32)
 #include <stdint.h>
+#endif
+
 /* a light stack-friendly hash library,
  * (it uses stack space for smallish hash tables) */
 




More information about the Bf-blender-cvs mailing list