Skip to content
Snippets Groups Projects
Commit 182e5ce4 authored by isucan's avatar isucan
Browse files

Merge pull request #16 from v4hn/boost-ints

fix boost/cstdint.hpp datatypes
parents d2ab210e 83e22baf
No related branches found
No related tags found
No related merge requests found
...@@ -44,10 +44,10 @@ namespace fcl ...@@ -44,10 +44,10 @@ namespace fcl
{ {
typedef double FCL_REAL; typedef double FCL_REAL;
typedef uint64_t FCL_INT64; typedef boost::uint64_t FCL_INT64;
typedef int64_t FCL_UINT64; typedef boost::int64_t FCL_UINT64;
typedef uint32_t FCL_UINT32; typedef boost::uint32_t FCL_UINT32;
typedef int32_t FCL_INT32; typedef boost::int32_t FCL_INT32;
/// @brief Triangle with 3 indices for points /// @brief Triangle with 3 indices for points
class Triangle class Triangle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment