fixed variable name in docs

This commit is contained in:
Mikhail Boldyrev
2018-10-14 19:24:57 +03:00
committed by GitHub
parent 9f94c8703b
commit eced0cfac8

View File

@ -354,7 +354,7 @@ int main(int, const char*[])
char tc; char tc;
BOOST_FOREACH(boost::tie(ti, tc), boost::combine(v, l)) BOOST_FOREACH(boost::tie(ti, tc), boost::combine(v, l))
{ {
std::cout << '(' << ti << ',' << tv << ')' << '\n'; std::cout << '(' << ti << ',' << tc << ')' << '\n';
} }
return 0; return 0;