Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
a4f002a0
Commit
a4f002a0
authored
Jan 15, 2013
by
Mark Moll
Browse files
Fix for boost version < 1.47
parent
5eb87200
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/articulated_model/model_config.cpp
View file @
a4f002a0
...
...
@@ -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
{
...
...
src/ccd/interpolation/interpolation_factory.cpp
View file @
a4f002a0
...
...
@@ -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
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment