renamed ftag to fusion_tag

[SVN r35247]
This commit is contained in:
Joel de Guzman
2006-09-21 12:25:27 +00:00
parent 1a6f4f948c
commit 425030e0eb
33 changed files with 44 additions and 44 deletions

View File

@@ -154,7 +154,7 @@ To understand how `value_of_impl` is used by the library we will look at the imp
struct __value_of__
{
typedef typename
extension::value_of_impl<typename Iterator::ftag>::
extension::value_of_impl<typename Iterator::fusion_tag>::
template apply<Iterator>::type
type;
};
@@ -209,7 +209,7 @@ To see how `deref_impl` is used, lets have a look at the implementation of __der
struct __deref__
{
typedef typename
deref_impl<typename Iterator::ftag>::
deref_impl<typename Iterator::fusion_tag>::
template apply<Iterator>::type
type;
};
@@ -220,7 +220,7 @@ To see how `deref_impl` is used, lets have a look at the implementation of __der
__deref__(Iterator const& i)
{
typename __result_of_deref__<Iterator>::type result =
extension::deref_impl<typename Iterator::ftag>::
extension::deref_impl<typename Iterator::fusion_tag>::
template apply<Iterator>::call(i);
return result;
}