Replace stdint.h header in check_container_size_decl.hpp

``#include <stdint.h>`` is invalid in MSVC 9 2008 .  Using the system dependent header does work in my testing with MSVC9, and should be safe for other compilers I think.
This commit is contained in:
Ian Bell
2016-02-14 15:15:11 -07:00
parent 988f72d5eb
commit 7b578cc065

View File

@@ -12,7 +12,7 @@
#include "msgpack/versioning.hpp"
#include <cstdlib>
#include <stdint.h>
#include "msgpack/sysdep.h"
namespace msgpack {