Skip to content

Commit

Permalink
[RF] Correctly delete copying and moving in RooCustomizer
Browse files Browse the repository at this point in the history
  • Loading branch information
guitargeek committed Sep 11, 2024
1 parent 2b64c0f commit 502745b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion roofit/roofitcore/inc/RooCustomizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,13 @@ class RooCustomizer {

RooAbsPdf const& pdf() const;

RooCustomizer(const RooCustomizer &) = delete;
RooCustomizer &operator=(const RooCustomizer &) = delete;
RooCustomizer(RooCustomizer &&) = delete;
RooCustomizer &operator=(RooCustomizer &&) = delete;

protected:

RooCustomizer(const RooCustomizer&) ;
void initialize() ;

RooAbsArg* doBuild(const char* masterCatState, bool verbose) ;
Expand Down

0 comments on commit 502745b

Please sign in to comment.