Skip to content
Snippets Groups Projects
Commit a4f002a0 authored by Mark Moll's avatar Mark Moll
Browse files

Fix for boost version < 1.47

parent 5eb87200
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,11 @@
#include "fcl/articulated_model/joint.h"
#include <algorithm>
// Define for boost version < 1.47
#ifndef BOOST_ASSERT_MSG
#define BOOST_ASSERT_MSG(expr, msg) ((void)0)
#endif
namespace fcl
{
......
......@@ -39,6 +39,11 @@
#include <boost/assert.hpp>
// Define for boost version < 1.47
#ifndef BOOST_ASSERT_MSG
#define BOOST_ASSERT_MSG(expr, msg) ((void)0)
#endif
namespace fcl
{
......
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