Skip to content

Commit 43d6aef

Browse files
committed
[core] Add missing includes
This will fix build errors like: error: declaration of 'type_info' must be imported from module 'std.std_typeinfo' before it is required
1 parent da0bac0 commit 43d6aef

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

core/cont/inc/TCollectionProxyInfo.h

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#include "TError.h"
2424
#include <vector>
2525
#include <forward_list>
26+
#include <typeinfo>
2627
#include <utility>
2728

2829
#if defined(_WIN32)

math/mathcore/inc/Math/DistSampler.h

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
#include "Math/WrappedFunction.h"
1919

20+
#include <algorithm>
2021
#include <vector>
2122
#include <cassert>
2223

math/mathcore/inc/Math/Functor.h

+2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@
2020
// #include "Math/StaticCheck.h"
2121
// #endif
2222

23+
#include <algorithm>
2324
#include <memory>
2425
#include <functional>
26+
#include <type_traits>
2527
#include <vector>
2628

2729
namespace ROOT {

tree/ntuple/inc/ROOT/RNTupleMetrics.hxx

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include <memory>
3131
#include <ostream>
3232
#include <string>
33+
#include <type_traits>
3334
#include <vector>
3435
#include <utility>
3536

0 commit comments

Comments
 (0)