From 0464a57530780435f2497cd4bca4081087b225c9 Mon Sep 17 00:00:00 2001 From: Jan-Grimo Sobez Date: Tue, 19 Sep 2023 11:03:53 +0200 Subject: [PATCH] Clean up bracket style --- include/boost/graph/isomorphism.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/isomorphism.hpp b/include/boost/graph/isomorphism.hpp index ef88961ce..fb3853664 100644 --- a/include/boost/graph/isomorphism.hpp +++ b/include/boost/graph/isomorphism.hpp @@ -474,13 +474,15 @@ namespace detail } } - if(!unmatched_g1_vertices.empty()) { + if(!unmatched_g1_vertices.empty()) + { typedef unordered_multimap< invariant_t, vertex2_t > g2_invariant_vertex_multimap; typedef typename g2_invariant_vertex_multimap::iterator multimap_iter; g2_invariant_vertex_multimap unmatched_invariants; BGL_FORALL_VERTICES_T(v, G2, Graph2) { - if(!in_S[v]) { + if(!in_S[v]) + { unmatched_invariants.emplace(invariant2(v), v); } }