aboutsummaryrefslogtreecommitdiff
path: root/src/google/protobuf/stubs/stringprintf.cc
diff options
context:
space:
mode:
authorxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2012-09-24 06:48:20 +0000
committerxiaofeng@google.com <xiaofeng@google.com@630680e5-0e50-0410-840e-4b1c322b438d>2012-09-24 06:48:20 +0000
commitfcb8a50b5017673a90dd9d7eef9999a101151c30 (patch)
tree8bc7283f6bdbde32d600eb707d41be7ef742db4e /src/google/protobuf/stubs/stringprintf.cc
parentb55a20fa2c669b181f47ea9219b8e74d1263da19 (diff)
downloadprotobuf-fcb8a50b5017673a90dd9d7eef9999a101151c30.tar.gz
protobuf-fcb8a50b5017673a90dd9d7eef9999a101151c30.tar.bz2
protobuf-fcb8a50b5017673a90dd9d7eef9999a101151c30.zip
Update MSVC project files and fix compilation issues in MSVC.
Diffstat (limited to 'src/google/protobuf/stubs/stringprintf.cc')
-rw-r--r--src/google/protobuf/stubs/stringprintf.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/google/protobuf/stubs/stringprintf.cc b/src/google/protobuf/stubs/stringprintf.cc
index d66a497a..4a5b8582 100644
--- a/src/google/protobuf/stubs/stringprintf.cc
+++ b/src/google/protobuf/stubs/stringprintf.cc
@@ -44,6 +44,11 @@ namespace protobuf {
#ifdef _MSC_VER
enum { IS_COMPILER_MSVC = 1 };
+#ifndef va_copy
+// Define va_copy for MSVC. This is a hack, assuming va_list is simply a
+// pointer into the stack and is safe to copy.
+#define va_copy(dest, src) ((dest) = (src))
+#endif
#else
enum { IS_COMPILER_MSVC = 0 };
#endif