]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/graph/test/adj_list_edge_list_set.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / graph / test / adj_list_edge_list_set.cpp
index 2d65bb03f275555b0589dbf9dab0e6a6645d1a74..d2f956bbba74ba4dbbdba9f3a88deb0de1818e87 100644 (file)
@@ -9,17 +9,17 @@
 
 // Make sure adjacency_list works with EdgeListS=setS
 #include <boost/graph/adjacency_list.hpp>
-#include <boost/test/minimal.hpp>
 
 using namespace boost;
 
-typedef adjacency_list<vecS, vecS, undirectedS, no_property, no_property,
-                       no_property, setS> GraphType;
+typedef adjacency_list< vecS, vecS, undirectedS, no_property, no_property,
+    no_property, setS >
+    GraphType;
 
-int test_main(int,char*[])
+int main(int, char*[])
 {
-  GraphType g(10);
-  add_vertex(g);
-  add_edge(0, 5, g);
-  return 0;
+    GraphType g(10);
+    add_vertex(g);
+    add_edge(0, 5, g);
+    return 0;
 }