blob: ab6db0d1a50a29d6a3c151c045d1c9ea2684009e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
diff --git a/src/core/soci-platform.h b/src/core/soci-platform.h
index aa5e4b1..2d8c5c7 100644
--- a/src/core/soci-platform.h
+++ b/src/core/soci-platform.h
@@ -24,7 +24,9 @@
#endif
// Define if you have the snprintf variants.
+#if _MSC_VER < 1900
#define snprintf _snprintf
+#endif
// Define if you have the strtoll and strtoull variants.
#if _MSC_VER < 1300
|