uint32_t -> boost::uint32_t

This commit is contained in:
gfgtdf 2014-10-31 19:56:02 +01:00
parent c73d68f496
commit 8100479af3

View file

@ -18,10 +18,10 @@
#include <string>
#include <vector>
#include <exception>
#include <stdint.h>
#include <boost/cstdint.hpp>
namespace ucs4 {
typedef uint32_t char_t;
typedef boost::uint32_t char_t;
typedef std::vector<char_t> string;
}