Skip to content
Snippets Groups Projects
Commit f4d184e6 authored by Philippe Canal's avatar Philippe Canal
Browse files

Resolve compiler warning about _tree.

Add unused routines in order to suppress the error message:

include/RooTreeData.h:33:10: error: private field '_tree' is not used [-Werror,-Wunused-private-field]
  TTree *_tree ;           // TTree holding the data points
         ^
parent dc5e3c02
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,8 @@ class RooTreeData : public RooAbsData {
public:
// Constructors, factory methods etc.
RooTreeData() {} ;
RooTreeData() : _tree(0) {} ;
const TTree *GetTree() const { return _tree; }
private:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment