Skip to content
Snippets Groups Projects
Verified Commit 01065011 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: fix indent

parent b95c3021
No related branches found
No related tags found
No related merge requests found
...@@ -191,12 +191,12 @@ namespace eigenpy ...@@ -191,12 +191,12 @@ namespace eigenpy
PyArray_DotFunc * dotfunc = &internal::SpecialMethods<Scalar>::dotfunc; PyArray_DotFunc * dotfunc = &internal::SpecialMethods<Scalar>::dotfunc;
// PyArray_CastFunc * cast = &internal::SpecialMethods<Scalar>::cast; // PyArray_CastFunc * cast = &internal::SpecialMethods<Scalar>::cast;
int code = Register::registerNewType(py_type_ptr, int code = Register::registerNewType(py_type_ptr,
&typeid(Scalar), &typeid(Scalar),
sizeof(Scalar), sizeof(Scalar),
getitem, setitem, nonzero, getitem, setitem, nonzero,
copyswap, copyswapn, copyswap, copyswapn,
dotfunc); dotfunc);
return code; return code;
} }
......
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