Skip to content

Commit f8f4603

Browse files
committed
extra run of the script to remove tabs and trailing whitespaces
1 parent f195ee2 commit f8f4603

File tree

7 files changed

+108
-108
lines changed

7 files changed

+108
-108
lines changed

BGL/examples/BGL_PMP/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ find_package(pmp)
88
if ( NOT PMP_FOUND )
99

1010
message(STATUS "This project requires the PMP library, and will not be compiled.")
11-
# return()
11+
# return()
1212

1313
endif()
1414

@@ -19,7 +19,7 @@ find_package( CGAL QUIET COMPONENTS )
1919
if ( NOT CGAL_FOUND )
2020

2121
message(STATUS "This project requires the CGAL library, and will not be compiled.")
22-
return()
22+
return()
2323

2424
endif()
2525

@@ -36,7 +36,7 @@ if ( NOT Boost_FOUND )
3636

3737
message(STATUS "This project requires the Boost library, and will not be compiled.")
3838

39-
return()
39+
return()
4040

4141
endif()
4242

BGL/examples/BGL_PMP/bgl_pmp.cpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main()
3636

3737
std::list<edge_descriptor> mst;
3838

39-
boost::kruskal_minimum_spanning_tree(sm,
39+
boost::kruskal_minimum_spanning_tree(sm,
4040
std::back_inserter(mst));
4141

4242
edge_descriptor e = *(edges(sm).begin());
@@ -53,8 +53,8 @@ int main()
5353
std::cout << e << std::endl;
5454
h = halfedge(e,sm);
5555
std::cout << h << std::endl;
56-
57-
56+
57+
5858
VIM vim = get(boost::vertex_index, sm);
5959
VPM vpm = get(CGAL::vertex_point, sm);
6060
for(auto v : vertices(sm)){
@@ -63,9 +63,9 @@ int main()
6363

6464
boost::property_traits<VPM>::value_type vt;
6565

66-
66+
6767
EIM eim = get(boost::edge_index,sm);
68-
68+
6969
for(auto e : edges(sm)){
7070
std::cout << e << " " << get(eim,e) << std::endl;
7171
}
@@ -101,6 +101,6 @@ int main()
101101
}
102102
}
103103
#endif
104-
104+
105105
return 0;
106106
}

0 commit comments

Comments
 (0)