Missing typename
parent
4d4e17c2a7
commit
b3ba46241c
|
|
@ -583,7 +583,7 @@ namespace gtsam {
|
||||||
}
|
}
|
||||||
// Find the path intersection
|
// Find the path intersection
|
||||||
B = this->root();
|
B = this->root();
|
||||||
FastList<sharedClique>::const_iterator p1 = path1.begin(), p2 = path2.begin();
|
typename FastList<sharedClique>::const_iterator p1 = path1.begin(), p2 = path2.begin();
|
||||||
while(p1 != path1.end() && p2 != path2.end() && *p1 == *p2) {
|
while(p1 != path1.end() && p2 != path2.end() && *p1 == *p2) {
|
||||||
B = *p1;
|
B = *p1;
|
||||||
++p1;
|
++p1;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue