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
Humanoid Path Planner
hpp-fcl
Commits
19d44ba2
Unverified
Commit
19d44ba2
authored
Jun 02, 2021
by
Justin Carpentier
Committed by
GitHub
Jun 02, 2021
Browse files
Merge pull request #225 from nim65s/topic/warnings
Silence boost bind warnings from boost python
parents
9568e23d
6e41d768
Pipeline
#14791
passed with stage
in 39 minutes and 30 seconds
Changes
9
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
python/collision-geometries.cc
View file @
19d44ba2
...
...
@@ -32,8 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
"fcl.hh"
...
...
python/collision.cc
View file @
19d44ba2
...
...
@@ -32,9 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<boost/python/suite/indexing/vector_indexing_suite.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
<hpp/fcl/fwd.hh>
...
...
python/distance.cc
View file @
19d44ba2
...
...
@@ -32,9 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<boost/python/suite/indexing/vector_indexing_suite.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
"fcl.hh"
...
...
python/fcl.cc
View file @
19d44ba2
...
...
@@ -32,8 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
"fcl.hh"
...
...
python/fcl.hh
View file @
19d44ba2
...
...
@@ -5,6 +5,14 @@ namespace doxygen {
}
#endif
// Silence a warning about a deprecated use of boost bind by boost python
// at least fo boost 1.73 to 1.75
// ref. https://github.com/stack-of-tasks/tsid/issues/128
#define BOOST_BIND_GLOBAL_PLACEHOLDERS
#include
<boost/python.hpp>
#include
<boost/python/suite/indexing/vector_indexing_suite.hpp>
#undef BOOST_BIND_GLOBAL_PLACEHOLDERS
void
exposeVersion
();
void
exposeMaths
();
...
...
python/gjk.cc
View file @
19d44ba2
...
...
@@ -32,9 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<boost/python/suite/indexing/vector_indexing_suite.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
"fcl.hh"
...
...
python/math.cc
View file @
19d44ba2
...
...
@@ -32,9 +32,6 @@
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
#include
<boost/python.hpp>
#include
<boost/python/suite/indexing/vector_indexing_suite.hpp>
#include
<eigenpy/eigenpy.hpp>
#include
<eigenpy/geometry.hpp>
...
...
python/octree.cc
View file @
19d44ba2
#include
<boost/python.hpp>
#include
"fcl.hh"
#include
<hpp/fcl/fwd.hh>
#include
<hpp/fcl/octree.h>
#include
"fcl.hh"
#ifdef HPP_FCL_HAS_DOXYGEN_AUTODOC
#include
"doxygen_autodoc/functions.h"
#endif
...
...
python/version.cc
View file @
19d44ba2
...
...
@@ -3,7 +3,7 @@
//
#include
"hpp/fcl/config.hh"
#include
<boost/python.hpp>
#include
"fcl.hh"
#include
<boost/preprocessor/stringize.hpp>
namespace
bp
=
boost
::
python
;
...
...
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