UIKit0 / alembic

Automatically exported from code.google.com/p/alembic
Other
0 stars 0 forks source link

Undefined int32_t, uint32_t, int64_t, uint64_t #276

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
When I was trying to compile Alembic-1.0.5 with VC10, compiler reported 
undefined int32_t, uint32_t, int64_t, uint64_t types, I just added the 
following line in AbcCoreHDF5\Foundation.h, then everything works fine.

#include <boost/cstdint.hpp>

typedef boost::int32_t int32_t;
typedef boost::uint32_t uint32_t;

typedef boost::int64_t int64_t;
typedef boost::uint64_t uint64_t;

Original issue reported on code.google.com by Bo.Schwa...@gmail.com on 2 Mar 2012 at 1:30

GoogleCodeExporter commented 9 years ago
This should be fixed in Alembic 1.1

Original comment by miller.lucas on 2 Aug 2012 at 11:16