mirror of
https://github.com/brechtsanders/xlsxio
synced 2025-03-28 21:13:24 +00:00
Fix redefinition warning in modern MSVC
Fix warning shown when compiling using modern C standards instead of MSVC legacy (which is still the default).
This commit is contained in:
parent
de548bb0be
commit
ada2aaf179
@ -47,7 +47,9 @@ typedef struct zip_source zip_source_t;
|
|||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
# undef DLL_EXPORT_XLSXIO
|
# undef DLL_EXPORT_XLSXIO
|
||||||
# define DLL_EXPORT_XLSXIO
|
# define DLL_EXPORT_XLSXIO
|
||||||
# define va_copy(dst,src) ((dst) = (src))
|
# ifndef va_copy
|
||||||
|
# define va_copy(dst,src) ((dst) = (src))
|
||||||
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
|
Loading…
x
Reference in New Issue
Block a user