mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
update
устранены ошибки компиляции
This commit is contained in:
parent
653a2be378
commit
a34e0cd59e
4 changed files with 14 additions and 5 deletions
|
@ -169,7 +169,7 @@ namespace data
|
|||
{
|
||||
for (boost::filesystem::directory_iterator it1 (it->path ()); it1 != end; ++it1)
|
||||
{
|
||||
RouterInfo * r = new RouterInfo (it1->path ().c_str ()); // FIXME!!! path::value_type != char in boost 1_55 on Windows. How to solve?
|
||||
RouterInfo * r = new RouterInfo (it1->path().string().c_str ());
|
||||
m_RouterInfos[r->GetIdentHash ()] = r;
|
||||
numRouters++;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue