From cf4441826909aae8ad5cd91cc8d9ef46821b759a Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Mon, 27 Jan 2025 13:31:24 -0500 Subject: [PATCH] Get rid of extra ; --- gtsam/discrete/DiscreteSearch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/discrete/DiscreteSearch.cpp b/gtsam/discrete/DiscreteSearch.cpp index 4a068d175..531d994be 100644 --- a/gtsam/discrete/DiscreteSearch.cpp +++ b/gtsam/discrete/DiscreteSearch.cpp @@ -165,7 +165,7 @@ DiscreteSearch::DiscreteSearch(const DiscreteBayesTree& bayesTree) { }; for (const auto& root : bayesTree.roots()) collectConditionals(root); costToGo_ = computeCostToGo(conditionals_); -}; +} struct SearchNodeQueue : public std::priority_queue,