diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-26 10:19:21 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-26 10:19:21 +0000 |
commit | 49a78a3dd7e6cf4b98214b975eb08ac93da521e6 (patch) | |
tree | ba35cea922f9db0ff51b52cb3deab7f692532193 /numpy | |
parent | 79eaf2c1e67bd33564e7a659412e8d82ef4c8ab2 (diff) | |
download | numpy-49a78a3dd7e6cf4b98214b975eb08ac93da521e6.tar.gz |
BUG: fix c++-style comment.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/include/numpy/ndarrayobject.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/core/include/numpy/ndarrayobject.h b/numpy/core/include/numpy/ndarrayobject.h index f404216b1..6f73f4408 100644 --- a/numpy/core/include/numpy/ndarrayobject.h +++ b/numpy/core/include/numpy/ndarrayobject.h @@ -1044,8 +1044,10 @@ static NPY_INLINE int PyArrayNeighborhoodIter_Reset(PyArrayNeighborhoodIterObject* iter); static NPY_INLINE int PyArrayNeighborhoodIter_Next(PyArrayNeighborhoodIterObject* iter); -// static NPY_INLINE int -// PyArrayNeighborhoodIter_Next2D(PyArrayNeighborhoodIterObject* iter); +#if 0 +static NPY_INLINE int +PyArrayNeighborhoodIter_Next2D(PyArrayNeighborhoodIterObject* iter); +#endif /* Include inline implementations - functions defined there are not considered * public API */ |