diff options
author | Derek Kim <bluewhale8202@gmail.com> | 2018-09-11 15:03:46 +0900 |
---|---|---|
committer | Derek Kim <bluewhale8202@gmail.com> | 2018-09-11 15:03:46 +0900 |
commit | 566eddfc4c27e4f30941e4ba9d908abb9a449a51 (patch) | |
tree | 0595b5404d0cf41d07c6fa4c7d954ff19346fd00 /numpy | |
parent | 6ab8bd1673c402e454e51cde4fa5531b7519b4ae (diff) | |
download | numpy-566eddfc4c27e4f30941e4ba9d908abb9a449a51.tar.gz |
DOC: #defining -> #define
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/include/numpy/npy_1_7_deprecated_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/include/numpy/npy_1_7_deprecated_api.h b/numpy/core/include/numpy/npy_1_7_deprecated_api.h index 02b08a78b..76b57b748 100644 --- a/numpy/core/include/numpy/npy_1_7_deprecated_api.h +++ b/numpy/core/include/numpy/npy_1_7_deprecated_api.h @@ -12,8 +12,8 @@ #pragma message(_WARN___LOC__"Using deprecated NumPy API, disable it with " \ "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION") #elif defined(__GNUC__) -#warning "Using deprecated NumPy API, disable it by " \ - "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" +#warning "Using deprecated NumPy API, disable it with " \ + "#define NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION" #endif /* TODO: How to do this warning message for other compilers? */ |