[SVN r72601]
This commit is contained in:
Joel de Guzman
2011-06-14 22:57:24 +00:00
parent 01424b06b3
commit 92c2362cef
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ namespace boost { namespace fusion { namespace extension
static type static type
call(It const& it) call(It const& it)
{ {
return deref(it).second; return fusion::deref(it).second;
} }
}; };
}; };

View File

@ -36,7 +36,7 @@ namespace boost { namespace fusion { namespace extension
static type static type
call(It const& it) call(It const& it)
{ {
return at<typename It::index>(it.seq->get_data()); return fusion::at<typename It::index>(it.seq->get_data());
} }
}; };
}; };