diff --git a/CHANGELOG.md b/CHANGELOG.md index 422e29f6e..af4445e4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Fixed - Fix the issue of missing exposition of Eigen types with __int64 scalar type ([#426](https://github.com/stack-of-tasks/eigenpy/pull/426)) +- Fix namespace use in unittest/std_pair.cpp ([#429](https://github.com/stack-of-tasks/eigenpy/pull/429)) ## [3.3.0] - 2024-01-23 diff --git a/unittest/std_pair.cpp b/unittest/std_pair.cpp index 5e02217f0..70771c291 100644 --- a/unittest/std_pair.cpp +++ b/unittest/std_pair.cpp @@ -18,12 +18,10 @@ std::pair copy(const std::pair& pair) { } BOOST_PYTHON_MODULE(std_pair) { - using namespace eigenpy; - - enableEigenPy(); + eigenpy::enableEigenPy(); typedef std::pair PairType; - StdPairConverter::registration(); + eigenpy::StdPairConverter::registration(); bp::def("std_pair_to_tuple", std_pair_to_tuple); bp::def("copy", copy);