Missing typename

release/4.3a0
Richard Roberts 2012-10-28 06:37:57 +00:00
parent 4d4e17c2a7
commit b3ba46241c
1 changed files with 1 additions and 1 deletions

View File

@ -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;