summaryrefslogtreecommitdiff
path: root/numpy/core/include
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2018-09-12 22:13:31 +0300
committermattip <matti.picus@gmail.com>2018-09-12 22:13:31 +0300
commit552b4ebb6db6af33f1e953ed4a96e5b11b6e3967 (patch)
treecdbd235e96de7bdc3c540cbe56c92013f53a9b5b /numpy/core/include
parentea0322bd6310462c1485ce82ff08775816f7b3a6 (diff)
parent99f7ad58fcfa3d09897426e468a66840026dbce8 (diff)
downloadnumpy-552b4ebb6db6af33f1e953ed4a96e5b11b6e3967.tar.gz
Merge 'master' into branch
Diffstat (limited to 'numpy/core/include')
-rw-r--r--numpy/core/include/numpy/npy_1_7_deprecated_api.h8
1 files changed, 4 insertions, 4 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 4c318bc47..76b57b748 100644
--- a/numpy/core/include/numpy/npy_1_7_deprecated_api.h
+++ b/numpy/core/include/numpy/npy_1_7_deprecated_api.h
@@ -9,11 +9,11 @@
#define _WARN___STR2__(x) #x
#define _WARN___STR1__(x) _WARN___STR2__(x)
#define _WARN___LOC__ __FILE__ "(" _WARN___STR1__(__LINE__) ") : Warning Msg: "
-#pragma message(_WARN___LOC__"Using deprecated NumPy API, disable it by " \
- "#defining NPY_NO_DEPRECATED_API NPY_1_7_API_VERSION")
+#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? */