Unverified Commit d49b0fad authored by Luca Boccassi's avatar Luca Boccassi Committed by GitHub

Merge pull request #2840 from ccpaging/master

Problem: Build fails in Visual Studio 2008 without `stdint.h`
parents 700d7cd1 e8ad51e6
......@@ -63,7 +63,6 @@
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
......
......@@ -60,6 +60,9 @@ typedef unsigned __int32 uint32_t;
#ifndef uint64_t
typedef unsigned __int64 uint64_t;
#endif
#ifndef UINT32_MAX
#define UINT32_MAX _UI32_MAX
#endif
#else
......
......@@ -30,7 +30,6 @@
#ifndef __ZMQ_VMCI_HPP_INCLUDED__
#define __ZMQ_VMCI_HPP_INCLUDED__
#include <stdint.h>
#include <string>
#include "platform.hpp"
......
......@@ -38,7 +38,6 @@
#include "random.hpp"
#include <assert.h>
#include <new>
#include <stdint.h>
#if !defined ZMQ_HAVE_WINDOWS
#include <unistd.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