Skip to content

Commit

Permalink
Make the PIDHandler class non-copyable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 18, 2024
1 parent fe5a540 commit a1fab10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/include/edm4hep/utils/ParticleIDUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class PIDHandler {
public:
PIDHandler() = default;
~PIDHandler() = default;
PIDHandler(const PIDHandler&) = default;
PIDHandler& operator=(const PIDHandler&) = default;
PIDHandler(const PIDHandler&) = delete;
PIDHandler& operator=(const PIDHandler&) = delete;
PIDHandler(PIDHandler&&) = default;
PIDHandler& operator=(PIDHandler&&) = default;

Expand Down

0 comments on commit a1fab10

Please sign in to comment.