mirror of https://github.com/KLayout/klayout.git
Syntax error fixed
This commit is contained in:
parent
14c1f7a4d6
commit
22439f1a31
|
|
@ -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 ();
|
||||
|
|
|
|||
Loading…
Reference in New Issue