summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2023-02-02 18:09:34 -0500
committerGitHub <noreply@github.com>2023-02-02 18:09:34 -0500
commit2433fe5b66016a640dd9337d9e114d7076f55861 (patch)
treec2336b4b766f682dc022602c53dfbe20addbec08
parent8dfa47db1eb6472490b33d5f380513308f3e1a2d (diff)
parent2de8e5228a2df34160709b570df16070ba23818b (diff)
downloadnumpy-2433fe5b66016a640dd9337d9e114d7076f55861.tar.gz
Merge pull request #23149 from charris/backport-23128
BUG: Add missing <type_traits> header.
-rw-r--r--numpy/linalg/umath_linalg.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/linalg/umath_linalg.cpp b/numpy/linalg/umath_linalg.cpp
index bbb4bb896..639de6ee0 100644
--- a/numpy/linalg/umath_linalg.cpp
+++ b/numpy/linalg/umath_linalg.cpp
@@ -22,6 +22,7 @@
#include <cstdio>
#include <cassert>
#include <cmath>
+#include <type_traits>
#include <utility>