fix warning about ambiguous parentheses
parent
2322b0e509
commit
38a895507d
|
@ -505,10 +505,11 @@ boost::shared_ptr<FastSet<Key> > ISAM2::recalculate(const FastSet<Key>& markedKe
|
||||||
}
|
}
|
||||||
|
|
||||||
// Root clique variables for detailed results
|
// Root clique variables for detailed results
|
||||||
if(params_.enableDetailedResults)
|
if(params_.enableDetailedResults) {
|
||||||
BOOST_FOREACH(const sharedNode& root, this->roots())
|
BOOST_FOREACH(const sharedNode& root, this->roots())
|
||||||
BOOST_FOREACH(Key var, *root->conditional())
|
BOOST_FOREACH(Key var, *root->conditional())
|
||||||
result.detail->variableStatus[var].inRootClique = true;
|
result.detail->variableStatus[var].inRootClique = true;
|
||||||
|
}
|
||||||
|
|
||||||
return affectedKeysSet;
|
return affectedKeysSet;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue