mirror of
https://github.com/boostorg/graph.git
synced 2026-01-19 04:12:11 +00:00
Correct various CI issues.
This commit is contained in:
@@ -10,7 +10,7 @@ import path ;
|
||||
path-constant TEST_DIR : . ;
|
||||
|
||||
run accum-compile-times.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.dat $(TEST_DIR)/target-compile-costs.dat ;
|
||||
exe actor_clustering : actor_clustering.cpp ;
|
||||
exe actor_clustering : actor_clustering.cpp : [ check-target-builds ../test//is_issue_251 : <build>no ] ;
|
||||
run adj_list_ra_edgelist.cpp ;
|
||||
run adjacency_list.cpp ;
|
||||
run adjacency_list_io.cpp ;
|
||||
@@ -43,7 +43,7 @@ run copy-example.cpp ;
|
||||
run csr-example.cpp ;
|
||||
run cuthill_mckee_ordering.cpp ;
|
||||
run cycle_canceling_example.cpp ;
|
||||
run cycle_ratio_example.cpp ;
|
||||
run cycle_ratio_example.cpp : : : [ check-target-builds ../test//is_issue_251 : <build>no ] ;
|
||||
run cycle-file-dep.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.dat ;
|
||||
run cycle-file-dep2.cpp : $(TEST_DIR)/makefile-dependencies.dat $(TEST_DIR)/makefile-target-names.dat ;
|
||||
run dag_shortest_paths.cpp ;
|
||||
@@ -75,7 +75,7 @@ run filtered_graph.cpp ;
|
||||
run filtered_graph_edge_range.cpp ;
|
||||
run filtered_vec_as_graph.cpp ;
|
||||
run filtered-copy-example.cpp ;
|
||||
exe fr_layout : fr_layout.cpp : [ requires cxx11_hdr_type_traits ] ;
|
||||
exe fr_layout : fr_layout.cpp : [ requires cxx11_noexcept cxx11_rvalue_references sfinae_expr cxx11_auto_declarations cxx11_lambdas cxx11_unified_initialization_syntax cxx11_hdr_tuple cxx11_hdr_initializer_list cxx11_hdr_chrono cxx11_thread_local cxx11_constexpr cxx11_nullptr cxx11_numeric_limits cxx11_decltype cxx11_hdr_array cxx11_hdr_atomic cxx11_hdr_type_traits cxx11_allocator cxx11_explicit_conversion_operators ] ;
|
||||
run gerdemann.cpp ;
|
||||
run graph.cpp ;
|
||||
run graph_as_tree.cpp ;
|
||||
|
||||
@@ -20,7 +20,11 @@ namespace boost
|
||||
template < class Alloc, class ValueType >
|
||||
struct container_gen< list_with_allocatorS< Alloc >, ValueType >
|
||||
{
|
||||
#ifdef BOOST_NO_CXX11_ALLOCATOR
|
||||
typedef typename Alloc::template rebind< ValueType >::other Allocator;
|
||||
#else
|
||||
typedef typename std::allocator_traits<Alloc>::template rebind_alloc<ValueType> Allocator;
|
||||
#endif
|
||||
typedef std::list< ValueType, Allocator > type;
|
||||
};
|
||||
template < class Alloc >
|
||||
|
||||
Reference in New Issue
Block a user