Skip to content

Commit a0fa42d

Browse files
jcarpentjorisv
andauthored
Apply suggestions from code review
Co-authored-by: Joris Vaillant <[email protected]>
1 parent ca776da commit a0fa42d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/eigenpy/std-pair.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ struct StdPairConverter {
5454

5555
static void registration() {
5656
boost::python::converter::registry::push_back(
57-
reinterpret_cast<void* (*)(_object*)>(&convertible), &construct,
57+
&convertible, &construct,
5858
boost::python::type_id<pair_type>()
5959
#ifndef BOOST_PYTHON_NO_PY_SIGNATURES
6060
,

unittest/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ add_python_unit_test("py-std-array" "unittest/python/test_std_array.py"
117117
set_tests_properties("py-std-array" PROPERTIES DEPENDS ${PYWRAP})
118118

119119
add_python_unit_test("py-std-pair" "unittest/python/test_std_pair.py"
120-
"python;unittest")
120+
"unittest")
121121
set_tests_properties("py-std-pair" PROPERTIES DEPENDS ${PYWRAP})
122122

123123
add_python_unit_test("py-user-struct" "unittest/python/test_user_struct.py"

0 commit comments

Comments
 (0)