mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-27 14:35:52 +00:00
Replace boost::lexical_cast with beast::lexicalCast
This commit is contained in:
@@ -164,7 +164,7 @@ bool ParameterInt::setValue (const Json::Value& value, Json::Value& error)
|
||||
{
|
||||
try
|
||||
{
|
||||
mValue = lexical_cast_st<int> (value.asString ());
|
||||
mValue = lexicalCastThrow <int> (value.asString ());
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user