Skip to content
Snippets Groups Projects
Commit 04845975 authored by Axel Naumann's avatar Axel Naumann
Browse files

Specify the type of unique_ptr we want.

parent de9b7b05
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ public:
template<class HIST>
THistDrawable(std::unique_ptr<HIST>&& hist, THistDrawOptions<DIMENSIONS> opts):
fHistImpl(std::move(hist->TakeImpl())),
fHistImpl(std::unique_ptr<HistImpl_t>(std::move(hist->TakeImpl()))),
fOpts(opts) {}
/// Paint the histogram
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment