2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-24 05:52:17 +00:00

changed placeholder typedef names

[SVN r12811]
This commit is contained in:
Jaakko Järvi
2002-02-14 20:10:52 +00:00
parent be8e0e3cd3
commit 02cd3b5453

View File

@@ -547,9 +547,9 @@ public:
template <int I> class placeholder {};
typedef const lambda_functor<placeholder<FIRST> > free1_type;
typedef const lambda_functor<placeholder<SECOND> > free2_type;
typedef const lambda_functor<placeholder<THIRD> > free3_type;
typedef const lambda_functor<placeholder<FIRST> > placeholder1_type;
typedef const lambda_functor<placeholder<SECOND> > placeholder2_type;
typedef const lambda_functor<placeholder<THIRD> > placeholder3_type;
// free variables are lambda_functors. This is to allow uniform handling with
// other lambda_functors.