Merge pull request #77 from MBoldyrev/MBoldyrev-doc-fix-var-name

fixed variable name in docs
This commit is contained in:
Glen Fernandes
2019-04-02 08:40:20 -04:00
committed by GitHub

View File

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