Skip to content

Commit

Permalink
Re #6131. Fixing the builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
mantid-roman committed Jan 16, 2013
1 parent 5c58a0d commit e6de56a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Code/Mantid/Framework/DataHandling/src/LoadMuonNexus1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace Mantid
setProperty("TimeZero", dum);
}
}
catch (::NeXus::Exception&)
catch (...)
{}

try
Expand All @@ -128,7 +128,7 @@ namespace Mantid
setProperty("FirstGoodData", bin*bin_size);
}
}
catch (::NeXus::Exception&)
catch (...)
{}

try
Expand All @@ -144,7 +144,7 @@ namespace Mantid
}
setProperty("DeadTimes", defaultDeadTimes);
}
catch (::NeXus::Exception&)
catch (...)
{}

NXEntry nxRun = root.openEntry("run");
Expand All @@ -155,14 +155,14 @@ namespace Mantid
title = nxRun.getString("title");
notes = nxRun.getString("notes");
}
catch (::NeXus::Exception&)
catch (...)
{}
std::string run_num;
try
{
run_num = boost::lexical_cast<std::string>(nxRun.getInt("number"));
}
catch (::NeXus::Exception&)
catch (...)
{}

MuonNexusReader nxload;
Expand Down

0 comments on commit e6de56a

Please sign in to comment.