From 34c788f3a013d3f8cb2eba3a98ad66a226a48c35 Mon Sep 17 00:00:00 2001
From: Vesa Karvonen Repeats #define BOOST_PP_LIST_FOR_EACH(MACRO,DATA,LIST)
MACRO(R,DATA,BOOST_PP_LIST_AT(LIST,INDEX))
for each INDEX = [0,
-BOOST_PP_LIST_SIZE(LIST)[.
In other words, expands to the sequence:
diff --git a/doc/reference/list_for_each_i.htm b/doc/reference/list_for_each_i.htm index 246c699..5ecf280 100644 --- a/doc/reference/list_for_each_i.htm +++ b/doc/reference/list_for_each_i.htm @@ -28,7 +28,7 @@Repeats MACRO(R,DATA,INDEX,BOOST_PP_LIST_AT(LIST,INDEX))
for each INDEX = [0,
-BOOST_PP_LIST_SIZE(LIST)[.
In other words, expands to the sequence:
diff --git a/doc/reference/repeat.htm b/doc/reference/repeat.htm index f1c588d..752173e 100644 --- a/doc/reference/repeat.htm +++ b/doc/reference/repeat.htm @@ -27,7 +27,7 @@Repeats the macro MACRO(INDEX,DATA)
for INDEX = [0,COUNT[
.
Repeats the macro MACRO(INDEX,DATA)
for INDEX = [0,COUNT)
.
In other words, expands to the sequence:
diff --git a/doc/reference/repeat_from_to.htm b/doc/reference/repeat_from_to.htm index afa67ef..cd2761e 100644 --- a/doc/reference/repeat_from_to.htm +++ b/doc/reference/repeat_from_to.htm @@ -27,7 +27,7 @@Repeats the macro MACRO(INDEX,DATA)
for INDEX = [FIRST,LAST[
.
Repeats the macro MACRO(INDEX,DATA)
for INDEX = [FIRST,LAST)
.
In other words, expands to the sequence:
diff --git a/include/boost/preprocessor/list/for_each.hpp b/include/boost/preprocessor/list/for_each.hpp index 3cc70df..32e10b3 100644 --- a/include/boost/preprocessor/list/for_each.hpp +++ b/include/boost/preprocessor/list/for_each.hpp @@ -16,7 +16,7 @@ #includeRepeats MACRO(R,DATA,BOOST_PP_LIST_AT(LIST,INDEX))
for each INDEX = [0,
-BOOST_PP_LIST_SIZE(LIST)[.
In other words, expands to the sequence:
diff --git a/include/boost/preprocessor/list/for_each_i.hpp b/include/boost/preprocessor/list/for_each_i.hpp index a2fd025..649d4b4 100644 --- a/include/boost/preprocessor/list/for_each_i.hpp +++ b/include/boost/preprocessor/list/for_each_i.hpp @@ -18,7 +18,7 @@ #includeRepeats MACRO(R,DATA,INDEX,BOOST_PP_LIST_AT(LIST,INDEX))
for each INDEX = [0,
-BOOST_PP_LIST_SIZE(LIST)[.
In other words, expands to the sequence:
diff --git a/include/boost/preprocessor/repeat.hpp b/include/boost/preprocessor/repeat.hpp index 9f0e7ed..f3b2f14 100644 --- a/include/boost/preprocessor/repeat.hpp +++ b/include/boost/preprocessor/repeat.hpp @@ -13,7 +13,7 @@ * See http://www.boost.org for most recent version. */ -/**Repeats the macro MACRO(INDEX,DATA)
for INDEX = [0,COUNT[
.
Repeats the macro MACRO(INDEX,DATA)
for INDEX = [0,COUNT)
.
In other words, expands to the sequence:
diff --git a/include/boost/preprocessor/repeat_from_to.hpp b/include/boost/preprocessor/repeat_from_to.hpp index 4ad5e06..40f9ee1 100644 --- a/include/boost/preprocessor/repeat_from_to.hpp +++ b/include/boost/preprocessor/repeat_from_to.hpp @@ -17,7 +17,7 @@ #includeRepeats the macro MACRO(INDEX,DATA)
for INDEX = [FIRST,LAST[
.
Repeats the macro MACRO(INDEX,DATA)
for INDEX = [FIRST,LAST)
.
In other words, expands to the sequence: