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:
parent
6d65bd3a1d
commit
e69df86969
2 changed files with 6 additions and 2 deletions
|
|
@ -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"
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue