Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bbff731

Browse files
committed
remove unused parameter 'contiguous'
1 parent f94ffd7 commit bbff731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/numpy_cpp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ class array_view : public detail::array_view_accessors<array_view, T, ND>
367367
}
368368
}
369369

370-
array_view(const array_view &other, bool contiguous = false) : m_arr(NULL), m_data(NULL)
370+
array_view(const array_view &other) : m_arr(NULL), m_data(NULL)
371371
{
372372
m_arr = other.m_arr;
373373
Py_XINCREF(m_arr);

0 commit comments

Comments
 (0)