Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
change deletion of unwanted functions
  • Loading branch information
paulgessinger committed Sep 2, 2016
commit f889dd6104245707b8ce1f8722883b4659b2dfeb
4 changes: 2 additions & 2 deletions graf2d/gpad/inc/TRatioPlot.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class TFileMergeInfo;
class TRatioPlot : public TObject {

private:
TRatioPlot& operator=(const TRatioPlot&); // Not implemented
TRatioPlot(const TRatioPlot &hrp);
TRatioPlot& operator=(const TRatioPlot&) = delete; // Not implemented
TRatioPlot(const TRatioPlot &hrp) = delete;
Copy link
Contributor Author

@paulgessinger paulgessinger Sep 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@karies Like this?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perfect, thanks!


enum CalculationMode {
kDivideHist = 1, ///< Use `TH1::Divide` to create the ratio.
Expand Down
9 changes: 0 additions & 9 deletions graf2d/gpad/src/TRatioPlot.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -466,15 +466,6 @@ void TRatioPlot::SetupPads() {

}

////////////////////////////////////////////////////////////////////////////////
/// TRatioPlot copy constructor

TRatioPlot::TRatioPlot(const TRatioPlot &/*hrp*/) : TObject()
{
Warning("TRatioPlot", "Copy constructor not yet implemented");
return;
}

////////////////////////////////////////////////////////////////////////////////
/// Browse.

Expand Down