Sébastien Loriot
|
d60f5645aa
|
replace BOOST_FOREACH by c++ ranged-based for loop
some of the command used for the replacement:
ack --cpp BOOST_FOREACH -l | xargs sed -i -E "s/BOOST_FOREACH\(([a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp BOOST_FOREACH -l | xargs sed -i -E "s/BOOST_FOREACH\((const [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp BOOST_FOREACH -l | xargs sed -i -E "s/BOOST_FOREACH\((const typename [a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack --cpp BOOST_FOREACH -l | xargs sed -i -E "s/BOOST_FOREACH\((typename [<>a-zA-Z_:&0-9]+)\s(\w+)\,/for(\1 \2 :/"
ack "boost/foreach.hpp" -l --cpp | xargs sed -i '/boost\/foreach.hpp>/d'
|
2019-03-29 13:22:15 +01:00 |
Sébastien Loriot
|
6e8e4a4b10
|
remove variadic template workaround for cmap, gmap, and lcell
|
2019-03-29 10:41:50 +01:00 |
Andreas Fabri
|
d0ba5e40a9
|
AABB_tree, BGL
|
2019-02-14 09:44:18 +01:00 |
Guillaume Damiand
|
a1474a74d2
|
Add a default argument for BGL tests and examples, used when no command line argument in given.
|
2018-10-18 11:04:14 +02:00 |
Andreas Fabri
|
c81b707bfb
|
Do not include graph_traits_{Polyhedron | Surface_mesh}.h
|
2017-04-24 19:17:43 +02:00 |
Andreas Fabri
|
567f027484
|
Fix macro name
|
2016-01-21 11:32:48 +01:00 |
Andreas Fabri
|
3a75fb45a0
|
iterator_range -> Iterator_range
|
2014-12-23 14:25:29 +01:00 |
Sébastien Loriot
|
5f4813b64d
|
properties_Polyhedron_3.h is now included by graph_traits_Polyhedron_3.h
|
2014-07-04 17:24:05 +02:00 |
Andreas Fabri
|
c726cedbbb
|
As BOOST_NO_CXX11_RANGE_BASED_FOR has been introduced with Boost 1.51
we need a CGAL macro
|
2014-07-03 09:24:20 +02:00 |
Andreas Fabri
|
31cbcd5544
|
less warnings
|
2014-07-01 14:45:28 +02:00 |
Andreas Fabri
|
b18acb6097
|
fix example
|
2014-06-24 18:33:42 +02:00 |
Andreas Fabri
|
5da08ce426
|
#include <ifstream>
|
2014-06-19 08:57:57 +02:00 |
Andreas Fabri
|
e7b0528ff8
|
Add a CGAL::iterator_range
|
2014-06-18 13:17:43 +02:00 |
Andreas Fabri
|
ded507212d
|
Add a CGAL::iterator_range
|
2014-06-13 12:29:18 +02:00 |