Skip to content

Commit

Permalink
added virtual Cut::clone method
Browse files Browse the repository at this point in the history
  • Loading branch information
jkguiang committed Jun 14, 2024
1 parent 16ee913 commit 7c41b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cutflow.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Cut::Cut(std::string new_name)

Cut::~Cut() {}

virtual Cut* Cut::clone(std::string new_name)
Cut* Cut::clone(std::string new_name)
{
return new Cut(new_name);
}
Expand Down

0 comments on commit 7c41b65

Please sign in to comment.