Skip to content

Commit

Permalink
:octocat: Applied clang-format.
Browse files Browse the repository at this point in the history
  • Loading branch information
pratzl authored and github-actions[bot] committed Sep 4, 2024
1 parent b1fce5a commit ed43a49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/graph/detail/graph_cpo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1976,7 +1976,7 @@ namespace _Degree {
if constexpr (_Strat_ref == _St_ref::_Member) {
return u.degree(__g);
} else if constexpr (_Strat_ref == _St_ref::_Non_member) {
return degree(__g, u); // intentional ADL
return degree(__g, u); // intentional ADL
} else if constexpr (_Strat_ref == _St_ref::_Auto_eval) {
return size(edges(__g, u)); // default impl
} else {
Expand Down Expand Up @@ -2004,7 +2004,7 @@ namespace _Degree {
constexpr _St_id _Strat_id = _Choice_id<_G&>._Strategy;

if constexpr (_Strat_id == _St_id::_Non_member) {
return degree(__g, uid); // intentional ADL
return degree(__g, uid); // intentional ADL
} else if constexpr (_Strat_id == _St_id::_Auto_eval) {
return size(edges(__g, uid)); // default impl
} else {
Expand Down

0 comments on commit ed43a49

Please sign in to comment.