From eb48793df26eec2944aff9717917fe2c5c237cee Mon Sep 17 00:00:00 2001 From: Jonas Hahnfeld Date: Tue, 9 Aug 2022 09:57:46 +0200 Subject: [PATCH] [VecOps] Add missing #include to RVec.hxx The file uses std::numeric_limits, defined in . That header is transitively included in most configurations, but for example not when building with a recent libstdc++ (with less transitive includes) and configuring with cxx14 and without VDT. --- math/vecops/inc/ROOT/RVec.hxx | 1 + 1 file changed, 1 insertion(+) diff --git a/math/vecops/inc/ROOT/RVec.hxx b/math/vecops/inc/ROOT/RVec.hxx index 81b338a32773f..22ee0e5329e82 100644 --- a/math/vecops/inc/ROOT/RVec.hxx +++ b/math/vecops/inc/ROOT/RVec.hxx @@ -38,6 +38,7 @@ #include #include #include +#include // for numeric_limits #include #include // for inner_product #include