Skip to content

Commit

Permalink
Add a comment about the deleted copy constructor and assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Dec 19, 2024
1 parent a1fab10 commit bb6bd97
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utils/include/edm4hep/utils/ParticleIDUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ class PIDHandler {
public:
PIDHandler() = default;
~PIDHandler() = default;
// Copies are not allowed to avoid copying the internal maps
PIDHandler(const PIDHandler&) = delete;
PIDHandler& operator=(const PIDHandler&) = delete;
PIDHandler(PIDHandler&&) = default;
Expand Down

0 comments on commit bb6bd97

Please sign in to comment.