Merge pull request #38 from pavelkryukov/patch-1

Remove std::unary_function from zip_iterator_eg.rst
This commit is contained in:
Edward Diener 2017-11-25 13:58:41 -05:00 committed by GitHub
commit 7e5a32b3ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,8 +45,7 @@ A non-generic implementation of ``zip_func`` could look as follows:
::
struct zip_func :
public std::unary_function<const boost::tuple<const double&, const int&>&, void>
struct zip_func
{
void operator()(const boost::tuple<const double&, const int&>& t) const
{