Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove unused parameter 'contiguous'
  • Loading branch information
jbmohler committed Nov 18, 2014
commit bbff7318842e29f9ab473a1af3c2751fcc2309b4
2 changes: 1 addition & 1 deletion src/numpy_cpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ class array_view : public detail::array_view_accessors<array_view, T, ND>
}
}

array_view(const array_view &other, bool contiguous = false) : m_arr(NULL), m_data(NULL)
array_view(const array_view &other) : m_arr(NULL), m_data(NULL)
{
m_arr = other.m_arr;
Py_XINCREF(m_arr);
Expand Down