Get rid of extra ;

release/4.3a0
Frank Dellaert 2025-01-27 13:31:24 -05:00
parent 2da5d764f1
commit cf44418269
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ DiscreteSearch::DiscreteSearch(const DiscreteBayesTree& bayesTree) {
}; };
for (const auto& root : bayesTree.roots()) collectConditionals(root); for (const auto& root : bayesTree.roots()) collectConditionals(root);
costToGo_ = computeCostToGo(conditionals_); costToGo_ = computeCostToGo(conditionals_);
}; }
struct SearchNodeQueue struct SearchNodeQueue
: public std::priority_queue<SearchNode, std::vector<SearchNode>, : public std::priority_queue<SearchNode, std::vector<SearchNode>,