Kaydet (Commit) 23583553 authored tarafından Michael Stahl's avatar Michael Stahl

mysqlcppconn: MSVC 2010 finally has grown a stdint.h

Change-Id: I5b8d948aad94ba492075245c18c8ed781baa469e
üst 58873656
......@@ -5,10 +5,12 @@
#define HAVE_FUNCTION_STRTOL 1
#define HAVE_FUNCTION_STRTOULL 1
#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX)
#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX) || (defined _MSC_VER && _MSC_VER >= 1600)
#define HAVE_STDINT_H
#ifndef _MSC_VER
#define HAVE_INTTYPES_H
#endif
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment