We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent edebdf3 commit 73900e9Copy full SHA for 73900e9
src/hydra-queue-runner/hydra-queue-runner.cc
@@ -52,7 +52,7 @@ struct Config
52
uint64_t getIntOption(const std::string & key, uint64_t def = 0)
53
{
54
auto i = options.find(key);
55
- return i == options.end() ? def : std::stoi(i->second);
+ return i == options.end() ? def : std::stoll(i->second);
56
}
57
58
bool getBoolOption(const std::string & key, bool def = false)