Merge pull request #20 from AshleyRoll/master

Correct Master Compile errors
This commit is contained in:
John Wellbelove 2017-03-10 07:44:34 +00:00 committed by GitHub
commit c5beaf7ac2

View File

@ -711,7 +711,7 @@ namespace etl
TOutputIterator o_begin,
TBinaryFunction function)
{
std::transform(i_begin, i_begin + n, i_begin2, o_begin, function);
std::transform(i_begin1, i_begin1 + n, i_begin2, o_begin, function);
}
//***************************************************************************