Cleanup some useless/unneeded #ifdefs for MSVC2013.

This commit is contained in:
Juergen Herrmann 2014-03-09 00:25:08 +01:00
parent 645aa96795
commit 5559302369
4 changed files with 4 additions and 5 deletions

@ -38,8 +38,7 @@
typedef short int16_t;
typedef int int32_t;
#else
typedef __int16 int16_t;
typedef __int32 int32_t;
# include <stdint.h>
#endif
#else
#include <stdint.h>

@ -18,7 +18,7 @@
#include <algorithm>
#if defined(_MSC_VER) && _MSC_VER > 1600
// sdt::greater
// std::greater
#include <functional>
#endif

@ -30,7 +30,7 @@
#include <cstring> // for memset
#include <float.h>
#ifndef _MSC_VER
#ifdef _MSC_VER
#include <stdint.h> // For SET_UINT_IN_POINTER, i.e. uintptr_t.
#endif
#include <vector>

@ -252,7 +252,7 @@ static int isqtime(const char *name)
#ifdef WITH_FFMPEG
#ifdef _MSC_VER
#if defined(_MSC_VER) && _MSC_VER < 1800
#define va_copy(dst, src) ((dst) = (src))
#endif