1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

small fix for building in VC2003

This commit is contained in:
jules 2009-01-30 21:13:38 +00:00
parent 6d65bd3a1d
commit e69df86969
2 changed files with 6 additions and 2 deletions

View file

@ -214012,9 +214012,11 @@ namespace pnglibNamespace
#if JUCE_INCLUDE_PNGLIB_CODE
using ::calloc;
#if _MSC_VER != 1310
using ::calloc; // (causes conflict in VS.NET 2003)
using ::malloc;
using ::free;
#endif
extern "C"
{

View file

@ -54,9 +54,11 @@ namespace pnglibNamespace
#if JUCE_INCLUDE_PNGLIB_CODE
using ::calloc;
#if _MSC_VER != 1310
using ::calloc; // (causes conflict in VS.NET 2003)
using ::malloc;
using ::free;
#endif
extern "C"
{