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
..
2018-10-18 14:49:23 +02:00
2018-05-17 10:49:58 +02:00
2017-06-15 09:50:00 -04:00
2018-10-18 11:04:14 +02:00
2017-06-15 09:50:00 -04:00
2019-02-14 09:44:18 +01:00
2017-05-10 13:27:37 -04:00
2017-06-15 09:50:00 -04:00
2019-02-14 09:44:18 +01:00
2017-06-15 09:50:00 -04:00
2019-03-29 13:22:15 +01:00
2017-06-15 09:50:00 -04:00
2019-02-14 09:44:18 +01:00