Drop patches previously backported: root-doxygen-makefile.patch root-crash-fix.patch root-test-stress-32bit.patch Drop patches accepted upstream: root-test-subdirs.patch root-test-fixes.patch root-out-of-bounds.patch root-doxygen-tilde.patch root-noinst.patch Drop patches for issues fixed upstream: root-dont-link-jvm.patch root-system-pythia.patch Drop patch root-urw-otf-hack.patch - broken font file no longer present Drop Google Droid Sans Fallback font from EPEL 7 root-fonts package (the font is now available in EPEL 7) Use two more patches from Fedora's llvm5.0 package New root-test-subdirs.patch patch for more instances of the same issue Fix a test not setting cache file directory so that it works offline Fix a compatibility issue with the EPEL 7 gtest version Fix a missing include Workaround optimization problems in the Geom library New subpackages due to library splits root-tree-dataframe and root-vecops from root-tree-player root-net-httpsniff from root-net-http New subpackages due to package splits root-gui-html from root-gui root-gui-qtgsi from root-gui-qt root-io-xmlparser from root-io-xml root-proof-player from root-proof New ROOT 7 subpackages graf-gpadv7 graf-primitives gui-fitpanelv7 gui-qt5webdisplay Rename root-guibuilder package to root-gui-builder
21 lines
634 B
Diff
21 lines
634 B
Diff
From f33ac48317fc1a144d6a7f0a7028e898b664e3a2 Mon Sep 17 00:00:00 2001
|
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
|
Date: Thu, 28 Jun 2018 23:02:46 +0200
|
|
Subject: [PATCH] Add missing include for std::shuffle
|
|
|
|
---
|
|
tmva/tmva/test/TestRandomGenerator.cxx | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/tmva/tmva/test/TestRandomGenerator.cxx b/tmva/tmva/test/TestRandomGenerator.cxx
|
|
index c8f0f50ee5f..02f941d7f26 100644
|
|
--- a/tmva/tmva/test/TestRandomGenerator.cxx
|
|
+++ b/tmva/tmva/test/TestRandomGenerator.cxx
|
|
@@ -10,6 +10,7 @@
|
|
#include "TMVA/Tools.h"
|
|
|
|
// Stdlib
|
|
+#include <algorithm>
|
|
#include <iostream>
|
|
|
|
// External
|