* replace deprecated boost::to_lower with boost::algorithm::to_lower()

This commit is contained in:
hagen 2023-05-15 00:00:00 +00:00
parent d010d3575d
commit f2269b75f5
3 changed files with 5 additions and 3 deletions

View file

@ -10,6 +10,7 @@
#include <string.h>
#include "I2PEndian.h"
#include <fstream>
#include <boost/algorithm/string.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/make_shared.hpp>
#if (BOOST_VERSION >= 105300)
@ -478,7 +479,7 @@ namespace data
else if (!strcmp (key, ROUTER_INFO_PROPERTY_FAMILY))
{
family = value;
boost::to_lower (family);
boost::algorithm::to_lower (family);
}
else if (!strcmp (key, ROUTER_INFO_PROPERTY_FAMILY_SIG))
{