Skip to content
Snippets Groups Projects
Commit 58ec1645 authored by scott snyder's avatar scott snyder
Browse files

dqm_algorithms: Fix compilation with clang.

The template definitions for LastBinThresholdAction are only in the cxx file.
So need to ensure within that file that instantations of that template
are complete.
parent 6325287f
No related branches found
No related tags found
No related merge requests found
...@@ -201,3 +201,8 @@ void dqm_algorithms::LastBinThresholdAction<Exceed, Action>::printDescription(st ...@@ -201,3 +201,8 @@ void dqm_algorithms::LastBinThresholdAction<Exceed, Action>::printDescription(st
out << "Optional parameter: NBinsToWatch - number of final bins that will be checked. (NBinsToWatch >= 1, default = -1)" << std::endl; out << "Optional parameter: NBinsToWatch - number of final bins that will be checked. (NBinsToWatch >= 1, default = -1)" << std::endl;
} }
// Make sure these are completely instantiated here, as the definitions
// are only in this file.
template class dqm_algorithms::LastBinThresholdAction<dqm_algorithms::GreaterThan, dqm_algorithms::TileDQAction>;
template class dqm_algorithms::LastBinThresholdAction<dqm_algorithms::DifferentThan, dqm_algorithms::TileDQAction>;
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