Skip to content

Commit

Permalink
Fix for older compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
schellingb committed Mar 7, 2020
1 parent b9a361a commit fd9a434
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/ZL_String.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
#if defined(_MSC_VER) && !defined(vsnprintf)
#define vsnprintf _vsnprintf
#endif
#if defined(_MSC_VER) && !defined(va_copy)
#define va_copy(d,s) ((d) = (s))
#endif

ZL_String ZL_String::EmptyString = ZL_String();
static char ZL_String_ConvBuf[32];
Expand Down

0 comments on commit fd9a434

Please sign in to comment.