Navigation Menu

Skip to content

Commit

Permalink
Add missing Visual C++ check
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 29, 2014
1 parent 484b1d4 commit 832ab57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/str.c
Expand Up @@ -28,7 +28,7 @@
#include <math.h>

/* For Visual C++ 2010. Drop the code when we drop Visual C++ 2010 support. */
#if _MSC_VER < 1800
#if defined(_MSC_VER) && _MSC_VER < 1800
# define va_copy(destination, source) destination = source
#endif

Expand Down

0 comments on commit 832ab57

Please sign in to comment.