mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-30 04:37:50 +02:00
* replace deprecated boost::to_lower with boost::algorithm::to_lower()
This commit is contained in:
parent
d010d3575d
commit
f2269b75f5
3 changed files with 5 additions and 3 deletions
|
@ -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))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue