Replaced all section name in lowercase and TPL_ID with ID_TPL.

[SVN r78230]
This commit is contained in:
Lorenzo Caminiti
2012-04-28 02:10:05 +00:00
parent 153662650b
commit 40d5300883
4 changed files with 42 additions and 38 deletions

View File

@@ -22,12 +22,12 @@
} BOOST_LOCAL_FUNCTION_NAME(dec)
#define LOCAL_INC_DEC_TPL(offset) \
T BOOST_LOCAL_FUNCTION_TPL_ID(BOOST_PP_CAT(inc, __LINE__), \
T BOOST_LOCAL_FUNCTION_ID_TPL(BOOST_PP_CAT(inc, __LINE__), \
(const bind offset) (const T x) ) { \
return x + offset; \
} BOOST_LOCAL_FUNCTION_NAME_TPL(inc) \
\
T BOOST_LOCAL_FUNCTION_TPL_ID(BOOST_PP_CAT(dec, __LINE__), \
T BOOST_LOCAL_FUNCTION_ID_TPL(BOOST_PP_CAT(dec, __LINE__), \
(const bind offset) (const T x) ) { \
return x - offset; \
} BOOST_LOCAL_FUNCTION_NAME_TPL(dec)