Skip to content
Snippets Groups Projects
Commit 82ac5393 authored by Christos Anastopoulos's avatar Christos Anastopoulos Committed by Nils Krumnack
Browse files

SysListDumperAlg, fix clang compilation error: decltype(auto) cannot be...

SysListDumperAlg, fix clang compilation error:  decltype(auto) cannot be combined with other type specifiers
parent 13fb76bd
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ namespace CP
m_firstEvent = false;
const decltype(auto) systematics = m_systematicsList.systematicsVector();
const auto& systematics = m_systematicsList.systematicsVector();
ANA_CHECK (book (TH1F (m_histogramName.c_str(), "systematics", systematics.size(), 0, systematics.size())));
TH1 *histogram = hist (m_histogramName);
......
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