summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-10-16 15:10:36 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-10-16 15:10:36 -0700
commit0bfb598f3d38bc3a269e072ba22ce2649d46e726 (patch)
tree2e64dde21a67928c632bdb8587060d906c3613b1
parenta6b0f40213e5f0418d3ecf37436c332478ebc039 (diff)
parent5fdfa413964ea9c17fbe9bc1f996e5feb60bb24d (diff)
downloadnumpy-0bfb598f3d38bc3a269e072ba22ce2649d46e726.tar.gz
Merge pull request #3929 from chrodan/strc++11
add spaces to literal string concatination for C++11 compatibility
-rw-r--r--numpy/core/include/numpy/npy_1_7_deprecated_api.h2
1 files changed, 1 insertions, 1 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 6c576d138..4c318bc47 100644
--- a/numpy/core/include/numpy/npy_1_7_deprecated_api.h
+++ b/numpy/core/include/numpy/npy_1_7_deprecated_api.h
@@ -8,7 +8,7 @@
#if defined(_WIN32)
#define _WARN___STR2__(x) #x
#define _WARN___STR1__(x) _WARN___STR2__(x)
-#define _WARN___LOC__ __FILE__ "("_WARN___STR1__(__LINE__)") : Warning Msg: "
+#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")
#elif defined(__GNUC__)