Skip to content
Snippets Groups Projects
Commit 3f4b4635 authored by Guilhem Saurel's avatar Guilhem Saurel
Browse files

fix boost bind warning from boost python

parent b850ef37
No related branches found
No related tags found
No related merge requests found
Pipeline #14039 passed with warnings
......@@ -5,7 +5,12 @@
#ifndef __python_namespace_h__
#define __python_namespace_h__
// 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>
#undef BOOST_BIND_GLOBAL_PLACEHOLDERS
namespace ndcurves {
namespace python {
......
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