Syntax error fixed

This commit is contained in:
Matthias Koefferlein 2019-05-31 23:20:32 +02:00
parent 14c1f7a4d6
commit 22439f1a31
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ static void fill_map (std::vector<std::pair<const Attr *, const Attr *> > &map,
for (Iter i = begin2; i != end2; ++i) {
++n2;
}
map.resize (std::max (n1, n2), std::make_pair((const Attr *)0, (const Attr *)0);
map.resize (std::max (n1, n2), std::make_pair((const Attr *)0, (const Attr *)0));
typename std::vector<std::pair<const Attr *, const Attr *> >::iterator j;
j = map.begin ();