Skip to content

Commit fb1b4ce

Browse files
committed
core: fix name
1 parent 77d83f5 commit fb1b4ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/eigenpy/eigen-allocator.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ namespace eigenpy
232232
if(Options != Eigen::Unaligned) // we need to check whether the memory is correctly aligned and composed of a continuous segment
233233
{
234234
void * data_ptr = PyArray_DATA(pyArray);
235-
if(!PyArray_ISONESEGMENT(pyArray) || !is_aligned(data_ptr,Option))
235+
if(!PyArray_ISONESEGMENT(pyArray) || !is_aligned(data_ptr,Options))
236236
need_to_allocate |= true;
237237
}
238238

0 commit comments

Comments
 (0)