устранены ошибки компиляции
This commit is contained in:
mikhail4021 2014-01-10 01:29:06 +04:00
parent 653a2be378
commit a34e0cd59e
4 changed files with 14 additions and 5 deletions

View file

@ -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++;
}