Skip to content
Snippets Groups Projects
Commit a6a4dd5a authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

AthExHive: Fix clang warning.

clang warning: unused lambda capture.


Former-commit-id: 203f1aec
parent b4df726f
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ HiveAlgB::dump() {
std::ostringstream ost;
m_di.for_all([this, &ost] (size_t s, const int i)
m_di.for_all([&ost] (size_t s, const int i)
{ ost << " s: " << s << " v: " << i << std::endl; } );
ATH_MSG_INFO("dumping m_di: \n" << ost.str());
......
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