Skip to content

Commit

Permalink
Re #10191. Trying to fix the build servers.
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfpeterson committed Sep 2, 2014
1 parent 1ddb2be commit 73136b7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ void MatrixWSDataSource::GetInfoList( double x,
if ( !ids.empty() )
{
list.push_back("Det ID");
list.push_back(std::to_string(*(ids.begin())));
const detid_t id = *(ids.begin());
list.push_back(std::to_string(id));
}

IDetector_const_sptr det; // now try to do various unit conversions
Expand Down

0 comments on commit 73136b7

Please sign in to comment.