Fix compilation using MSVC 2008: stdint.h is not present in this compiler

This patch fixes the two headers added recently to include our own "stdint.hpp" instead of system <stdint.h> because the latter is not available in Visual Studio versions prior to 2010.
This commit is contained in:
Ivan Pechorin
2012-09-26 16:06:20 +04:00
parent 4de27b6c10
commit 396b4e3046
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
#ifndef __ZMQ_I_ENCODER_HPP_INCLUDED__
#define __ZMQ_I_ENCODER_HPP_INCLUDED__
#include <stdint.h>
#include "stdint.hpp"
namespace zmq
{