]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/graph/transpose_graph.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / boost / graph / transpose_graph.hpp
index b12ba1005d2a5301f6784410d7d1a6c9f65ca2fd..9970e5936f1b34cbafe13761497b4f7e3de4d93c 100644 (file)
 #include <boost/graph/reverse_graph.hpp>
 #include <boost/graph/copy.hpp>
 
+namespace boost
+{
 
-namespace boost {
-
-  template <class VertexListGraph, class MutableGraph> 
-  void transpose_graph(const VertexListGraph& G, MutableGraph& G_T)
-  {
-    reverse_graph<VertexListGraph> R(G);
+template < class VertexListGraph, class MutableGraph >
+void transpose_graph(const VertexListGraph& G, MutableGraph& G_T)
+{
+    reverse_graph< VertexListGraph > R(G);
     copy_graph(R, G_T);
-  }
-  
-  template <class VertexListGraph, class MutableGraph, 
-    class P, class T, class R> 
-  void transpose_graph(const VertexListGraph& G, MutableGraph& G_T,
-                       const bgl_named_params<P, T, R>& params)
-  {
-    reverse_graph<VertexListGraph> Rev(G);
+}
+
+template < class VertexListGraph, class MutableGraph, class P, class T,
+    class R >
+void transpose_graph(const VertexListGraph& G, MutableGraph& G_T,
+    const bgl_named_params< P, T, R >& params)
+{
+    reverse_graph< VertexListGraph > Rev(G);
     copy_graph(Rev, G_T, params);
-  }
+}
 
 } // namespace boost