mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 11:05:54 +00:00
Replace boost::lexical_cast with beast::lexicalCast
This commit is contained in:
@@ -289,7 +289,7 @@ Json::Value InboundLedgers::getInfo()
|
||||
{
|
||||
uint32 seq = it.second->getSeq();
|
||||
if (seq > 1)
|
||||
ret[boost::lexical_cast<std::string>(seq)] = it.second->getJson(0);
|
||||
ret[lexicalCastThrow <std::string>(seq)] = it.second->getJson(0);
|
||||
else
|
||||
ret[it.first.GetHex()] = it.second->getJson(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user