Skip to content

Commit

Permalink
Removed boost::uit64_t , they are now built-in c++
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Camolezi committed May 29, 2020
1 parent 8c0e2bf commit c459c99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CondCore/Utilities/bin/cmscond_from_lumiid.cpp
Expand Up @@ -14,7 +14,7 @@ namespace cond {
} // namespace cond

cond::FromLumiIdUtilities::FromLumiIdUtilities() : Utilities("cmscond_from_lumiid") {
addOption<boost::uint64_t>("lumiid", "i", "luminosity block id of unsigned 64bit int(required)");
addOption<uint64_t>("lumiid", "i", "luminosity block id of unsigned 64bit int(required)");
}

cond::FromLumiIdUtilities::~FromLumiIdUtilities() {}
Expand All @@ -24,7 +24,7 @@ int cond::FromLumiIdUtilities::execute() {
std::cout << "ERROR: Missing mandatory option \"lumiid\"." << std::endl;
return 1;
}
boost::uint64_t lumiid = getOptionValue<boost::uint64_t>("lumiid");
uint64_t lumiid = getOptionValue<uint64_t>("lumiid");
bool debug = hasDebug();
std::cout << edm::LuminosityBlockID(lumiid) << std::endl;
if (debug) {
Expand Down

0 comments on commit c459c99

Please sign in to comment.