Skip to content

Commit

Permalink
[issue1082] make transform const
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Feb 1, 2024
1 parent af6f95a commit 4f671ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/search/heuristic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using namespace std;
Heuristic::Heuristic(
shared_ptr<AbstractTask> transform,
const shared_ptr<AbstractTask> &transform,
bool cache_estimates,
const string &name,
utils::Verbosity verbosity)
Expand Down
2 changes: 1 addition & 1 deletion src/search/heuristic.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Heuristic : public Evaluator {

public:
Heuristic(
std::shared_ptr<AbstractTask> transform,
const std::shared_ptr<AbstractTask> &transform,
bool cache_estimates,
const std::string &name,
utils::Verbosity verbosity);
Expand Down

0 comments on commit 4f671ae

Please sign in to comment.