diff options
author | Mark Wiebe <mwwiebe@gmail.com> | 2013-05-13 14:06:23 -0700 |
---|---|---|
committer | Mark Wiebe <mwwiebe@gmail.com> | 2013-05-13 15:41:09 -0700 |
commit | f7dd423fc8ad570813e0db859706899945b4dad9 (patch) | |
tree | 98a149a86e8f3c6eb2c5cb9a6a740c7f034d8da0 /numpy/linalg/umath_linalg.c.src | |
parent | 458b0999e34a83febd3e39c0d53ef39fe1d6dc5c (diff) | |
download | numpy-f7dd423fc8ad570813e0db859706899945b4dad9.tar.gz |
BLD: Fixes for building on win32 with MSVC 2008
Diffstat (limited to 'numpy/linalg/umath_linalg.c.src')
-rw-r--r-- | numpy/linalg/umath_linalg.c.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/umath_linalg.c.src b/numpy/linalg/umath_linalg.c.src index eadbde8e7..231383d18 100644 --- a/numpy/linalg/umath_linalg.c.src +++ b/numpy/linalg/umath_linalg.c.src @@ -1196,11 +1196,11 @@ init_gemm_params(GEMM_PARAMS_t *params, npy_intp* steps, size_t sot) { + npy_uint8 *mem_buff = NULL; matrix_desc a, b, c; matrix_desc_init(&a, steps + 0, sot, m, k); matrix_desc_init(&b, steps + 2, sot, k, n); matrix_desc_init(&c, steps + 4, sot, m, n); - npy_uint8 *mem_buff = NULL; if (a.size + b.size + c.size) { |