@@ -654,7 +654,7 @@ namespace _Vertices_DFS {
654654# endif // ^^^ workaround ^^^
655655
656656 template <class _G , class _Alloc , class _UnCV >
657- concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
657+ concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
658658 && requires (_G&& __g, const vertex_id_t <_G>& uid, _Alloc alloc) {
659659 { _Fake_copy_init (vertices_depth_first_search (__g, uid, alloc)) }; // intentional ADL
660660 };
@@ -746,7 +746,7 @@ namespace _Vertices_DFS {
746746 constexpr _St_ref _Strat_ref = _Choice_ref<_G&, _Alloc>._Strategy ;
747747
748748 if constexpr (_Strat_ref == _St_ref::_Non_member) {
749- return vertices_depth_first_search (__g, seed, alloc); // intentional ADL
749+ return vertices_depth_first_search (__g, seed, alloc); // intentional ADL
750750 } else if constexpr (_Strat_ref == _St_ref::_Auto_eval) {
751751 return vertices_depth_first_search_view<_G, void >(__g, seed, alloc); // default impl
752752 } else {
@@ -779,7 +779,7 @@ namespace _Vertices_DFS {
779779 constexpr _St_ref_vvf _Strat_ref_vvf = _Choice_ref_vvf<_G&, _VVF, _Alloc>._Strategy ;
780780
781781 if constexpr (_Strat_ref_vvf == _St_ref_vvf::_Non_member) {
782- return vertices_depth_first_search (__g, seed, vvf, alloc); // intentional ADL
782+ return vertices_depth_first_search (__g, seed, vvf, alloc); // intentional ADL
783783 } else if constexpr (_Strat_ref_vvf == _St_ref_vvf::_Auto_eval) {
784784 return vertices_depth_first_search_view<_G, _VVF>(__g, seed, vvf, alloc); // default impl
785785 } else {
@@ -808,7 +808,7 @@ namespace _Edges_DFS {
808808# endif // ^^^ workaround ^^^
809809
810810 template <class _G , class _Alloc , class _UnCV >
811- concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
811+ concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
812812 && requires (_G&& __g, const vertex_id_t <_G>& uid, _Alloc alloc) {
813813 { _Fake_copy_init (edges_depth_first_search (__g, uid, alloc)) }; // intentional ADL
814814 };
@@ -901,7 +901,7 @@ namespace _Edges_DFS {
901901 constexpr _St_ref _Strat_ref = _Choice_ref<_G&, _Alloc>._Strategy ;
902902
903903 if constexpr (_Strat_ref == _St_ref::_Non_member) {
904- return edges_depth_first_search (__g, seed, alloc); // intentional ADL
904+ return edges_depth_first_search (__g, seed, alloc); // intentional ADL
905905 } else if constexpr (_Strat_ref == _St_ref::_Auto_eval) {
906906 return edges_depth_first_search_view<_G, void , false >(__g, seed, alloc); // default impl
907907 } else {
@@ -934,7 +934,7 @@ namespace _Edges_DFS {
934934 constexpr _St_ref_evf _Strat_ref_evf = _Choice_ref_evf<_G&, _EVF, _Alloc>._Strategy ;
935935
936936 if constexpr (_Strat_ref_evf == _St_ref_evf::_Non_member) {
937- return edges_depth_first_search (__g, seed, alloc); // intentional ADL
937+ return edges_depth_first_search (__g, seed, alloc); // intentional ADL
938938 } else if constexpr (_Strat_ref_evf == _St_ref_evf::_Auto_eval) {
939939 return edges_depth_first_search_view<_G, _EVF, false >(__g, seed, evf, alloc); // default impl
940940 } else {
@@ -963,7 +963,7 @@ namespace _Sourced_Edges_DFS {
963963# endif // ^^^ workaround ^^^
964964
965965 template <class _G , class _Alloc , class _UnCV >
966- concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
966+ concept _Has_ref_ADL = _Has_class_or_enum_type<_G> //
967967 && requires (_G&& __g, const vertex_id_t <_G>& uid, _Alloc alloc) {
968968 { _Fake_copy_init (sourced_edges_depth_first_search (__g, uid, alloc)) }; // intentional ADL
969969 };
@@ -1056,7 +1056,7 @@ namespace _Sourced_Edges_DFS {
10561056 constexpr _St_ref _Strat_ref = _Choice_ref<_G&, _Alloc>._Strategy ;
10571057
10581058 if constexpr (_Strat_ref == _St_ref::_Non_member) {
1059- return sourced_edges_depth_first_search (__g, seed, alloc); // intentional ADL
1059+ return sourced_edges_depth_first_search (__g, seed, alloc); // intentional ADL
10601060 } else if constexpr (_Strat_ref == _St_ref::_Auto_eval) {
10611061 return edges_depth_first_search_view<_G, void , true >(__g, seed, alloc); // default impl
10621062 } else {
@@ -1089,7 +1089,7 @@ namespace _Sourced_Edges_DFS {
10891089 constexpr _St_ref_evf _Strat_ref_evf = _Choice_ref_evf<_G&, _EVF, _Alloc>._Strategy ;
10901090
10911091 if constexpr (_Strat_ref_evf == _St_ref_evf::_Non_member) {
1092- return sourced_edges_depth_first_search (__g, seed, alloc); // intentional ADL
1092+ return sourced_edges_depth_first_search (__g, seed, alloc); // intentional ADL
10931093 } else if constexpr (_Strat_ref_evf == _St_ref_evf::_Auto_eval) {
10941094 return edges_depth_first_search_view<_G, _EVF, true >(__g, seed, evf, alloc); // default impl
10951095 } else {
@@ -1248,4 +1248,4 @@ sourced_edges_depth_first_search(G&& g, vertex_id_t<G> seed, const EVF& evf, con
12481248
12491249# endif // 0
12501250
1251- #endif // GRAPH_DFS_HPP
1251+ #endif // GRAPH_DFS_HPP
0 commit comments