Skip to content

Commit c23a411

Browse files
committed
bindings/python : fix console-bridge.cpp
1 parent 3cf98ee commit c23a411

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bindings/python/parsers/urdf/console-bridge.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
//
44

55
#include <boost/python.hpp>
6+
#include <eigenpy/registration.hpp>
67
#include "pinocchio/bindings/python/parsers/urdf.hpp"
78

89
#ifdef PINOCCHIO_WITH_URDFDOM
@@ -23,7 +24,7 @@ namespace pinocchio
2324
::console_bridge::setLogLevel(::console_bridge::CONSOLE_BRIDGE_LOG_ERROR);
2425

2526
typedef ::console_bridge::LogLevel LogLevel;
26-
if (!register_symbolic_link_to_registered_type<LogLevel>())
27+
if (!eigenpy::register_symbolic_link_to_registered_type<LogLevel>())
2728
{
2829
bp::enum_<LogLevel>("LogLevel")
2930
.value("CONSOLE_BRIDGE_LOG_DEBUG", ::console_bridge::CONSOLE_BRIDGE_LOG_DEBUG)

0 commit comments

Comments
 (0)