Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2019-04-04 18:58:07 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2019-05-06 14:05:29 +0300
commitf01df8f5cd4c374b2b0c9bb885cf6f45a65f3122 (patch)
treebdcb2ae412892003ed208f76737cc928f1fbd60d /routing
parentde02ec02febb3da29fc0ed7a4019384a25c1b5d4 (diff)
Stage 2. Process data.
Diffstat (limited to 'routing')
-rw-r--r--routing/restriction_loader.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/routing/restriction_loader.cpp b/routing/restriction_loader.cpp
index f1b1efd8be..6ed6acbc7e 100644
--- a/routing/restriction_loader.cpp
+++ b/routing/restriction_loader.cpp
@@ -49,7 +49,8 @@ RestrictionLoader::RestrictionLoader(MwmValue const & mwmValue, IndexGraph const
try
{
- m_reader = make_unique<FilesContainerR::TReader>(mwmValue.m_cont.GetReader(RESTRICTIONS_FILE_TAG));
+ m_reader =
+ std::make_unique<FilesContainerR::TReader>(mwmValue.m_cont.GetReader(RESTRICTIONS_FILE_TAG));
ReaderSource<FilesContainerR::TReader> src(*m_reader);
m_header.Deserialize(src);