Skip to content

Commit fdb67a1

Browse files
committed
fix minimal Boost version for concurrent hashmap
1 parent e40079b commit fdb67a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/base/delaunayRipsPersistenceDiagram/geoPHUtils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <boost/unordered/unordered_set.hpp>
1212
#endif
1313

14-
#if((BOOST_VERSION / 100) % 1000) >= 83
14+
#if((BOOST_VERSION / 100) % 1000) >= 84
1515
#include <boost/unordered/concurrent_flat_map.hpp>
1616
#define TTK_CONCURRENT_HASHTABLE_AVAILABLE
1717
#endif
@@ -59,7 +59,7 @@ namespace ttk::gph {
5959
using HashSet = boost::unordered_set<X>;
6060
#endif
6161

62-
#if((BOOST_VERSION / 100) % 1000) >= 83
62+
#if((BOOST_VERSION / 100) % 1000) >= 84
6363
template <typename X, typename Y>
6464
using ConcurrentHashMap = boost::concurrent_flat_map<X, Y>;
6565
#endif

0 commit comments

Comments
 (0)