Ignore:
Timestamp:
Dec 4, 2017 7:23:36 AM (6 years ago)
Author:
riza
Message:

Re #2065: We still need to modify some source code to avoid build error on
Visual Studio 2005.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/third_party/yuv/include/libyuv/basic_types.h

    r5699 r5708  
    1515 
    1616#if defined(_MSC_VER) && (_MSC_VER < 1600) 
     17#if _MSC_VER==1400 
     18#   include <stdint.h>  // for uint8_t 
     19#endif 
    1720#include <sys/types.h>  // for uintptr_t on x86 
    1821#else 
    1922#include <stdint.h>  // for uintptr_t 
     23#endif 
     24 
     25#if defined(_MSC_VER) 
     26#  pragma warning(disable:4996) // This function or variable may be unsafe. 
    2027#endif 
    2128 
Note: See TracChangeset for help on using the changeset viewer.