From 0f703df60788759218485340dec6c7311369ecf3 Mon Sep 17 00:00:00 2001 From: Claudia Grundke Date: Wed, 7 Feb 2024 18:05:41 +0100 Subject: [PATCH] Remove explicity from GoalCountHeuristic constructor --- src/search/heuristics/goal_count_heuristic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search/heuristics/goal_count_heuristic.h b/src/search/heuristics/goal_count_heuristic.h index ac5b93331a..54861339ae 100644 --- a/src/search/heuristics/goal_count_heuristic.h +++ b/src/search/heuristics/goal_count_heuristic.h @@ -8,7 +8,7 @@ class GoalCountHeuristic : public Heuristic { protected: virtual int compute_heuristic(const State &ancestor_state) override; public: - explicit GoalCountHeuristic( + GoalCountHeuristic( const std::shared_ptr &transform, bool cache_estimates, const std::string &name,