diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 23:43:36 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-12 23:43:36 +0000 |
commit | ad3291b99ca2614b7d5bbdd90074d18963765109 (patch) | |
tree | 7ff087fc0968897483d6ac8e6da3e9e9b1a03791 /third_party | |
parent | 0e175a800f635a60b58764be07d406aad216e9b3 (diff) | |
download | chromium_src-ad3291b99ca2614b7d5bbdd90074d18963765109.zip chromium_src-ad3291b99ca2614b7d5bbdd90074d18963765109.tar.gz chromium_src-ad3291b99ca2614b7d5bbdd90074d18963765109.tar.bz2 |
va_copy shim not necessary on VS2013+
(And conflicts with standard headers)
R=dgrogan@chromium.org
BUG=288948
Review URL: https://chromiumcodereview.appspot.com/23444056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222913 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/leveldatabase/port/port_chromium.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/leveldatabase/port/port_chromium.h b/third_party/leveldatabase/port/port_chromium.h index 661e85b..bc6ec5f 100644 --- a/third_party/leveldatabase/port/port_chromium.h +++ b/third_party/leveldatabase/port/port_chromium.h @@ -23,7 +23,7 @@ #if defined(OS_WIN) #define snprintf _snprintf typedef SSIZE_T ssize_t; -#if !defined(__clang__) +#if !defined(__clang__) && _MSC_VER <= 1700 # define va_copy(a, b) do { (a) = (b); } while (0) #endif #endif |