We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3918395 commit 87718f9Copy full SHA for 87718f9
1 file changed
src/numeric.cpp
@@ -225,22 +225,22 @@ namespace aux
225
226
bool array_base::isaligned() const
227
{
228
- return extract<bool>(attr("isaligned"));
+ return extract<bool>(attr("isaligned")());
229
}
230
231
bool array_base::iscontiguous() const
232
233
+ return extract<bool>(attr("iscontiguous")());
234
235
236
long array_base::itemsize() const
237
238
- return extract<long>(attr("itemsize"));
+ return extract<long>(attr("itemsize")());
239
240
241
long array_base::nelements() const
242
243
- return extract<long>(attr("nelements"));
+ return extract<long>(attr("nelements")());
244
245
246
object array_base::nonzero() const
0 commit comments