From 027c6bf563e46e1fd9b6bbf1602bd8e3bd9a2b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaakko=20J=C3=A4rvi?= Date: Thu, 14 Feb 2002 20:11:19 +0000 Subject: [PATCH] changed placheolder typedef names [SVN r12812] --- include/boost/lambda/core.hpp | 12 ++++++------ include/boost/lambda/exceptions.hpp | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/include/boost/lambda/core.hpp b/include/boost/lambda/core.hpp index a6424e8..95cdbc7 100644 --- a/include/boost/lambda/core.hpp +++ b/include/boost/lambda/core.hpp @@ -54,13 +54,13 @@ namespace lambda { namespace { - boost::lambda::free1_type free1; - boost::lambda::free2_type free2; - boost::lambda::free3_type free3; + boost::lambda::placeholder1_type free1; + boost::lambda::placeholder2_type free2; + boost::lambda::placeholder3_type free3; - boost::lambda::free1_type& _1 = free1; - boost::lambda::free2_type& _2 = free2; - boost::lambda::free3_type& _3 = free3; + boost::lambda::placeholder1_type& _1 = free1; + boost::lambda::placeholder2_type& _2 = free2; + boost::lambda::placeholder3_type& _3 = free3; // _1, _2, ... naming scheme by Peter Dimov } // unnamed diff --git a/include/boost/lambda/exceptions.hpp b/include/boost/lambda/exceptions.hpp index c99b92c..ff97e8a 100644 --- a/include/boost/lambda/exceptions.hpp +++ b/include/boost/lambda/exceptions.hpp @@ -22,11 +22,11 @@ namespace boost { namespace lambda { -typedef lambda_functor > freeE_type; +typedef lambda_functor > placeholderE_type; namespace { - boost::lambda::freeE_type freeE; - boost::lambda::freeE_type& _E = freeE; + boost::lambda::placeholderE_type freeE; + boost::lambda::placeholderE_type& _E = freeE; } // -- try_catch arity_deduction --------------------------------