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:
authorYuri Gorshenin <y@maps.me>2015-09-25 17:14:50 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:02:21 +0300
commitd39493a758c3d06292eb183691fb0b3c0bcd8974 (patch)
tree904550c4d35b5b9961b0f18e4130e7e65e8bca29 /indexer/index.cpp
parentb8e3c48c26413af8ca1b6a600617d0e32ddfe6b0 (diff)
Review fixes.
Diffstat (limited to 'indexer/index.cpp')
-rw-r--r--indexer/index.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/index.cpp b/indexer/index.cpp
index dfce9dce8e..adedb68d4a 100644
--- a/indexer/index.cpp
+++ b/indexer/index.cpp
@@ -76,9 +76,9 @@ unique_ptr<MwmSet::MwmValueBase> Index::CreateValue(MwmInfo & info) const
{
search::RankTableBuilder::CreateIfNotExists(localFile);
}
- catch (RootException const & e)
+ catch (exception const & e)
{
- LOG(LWARNING, ("Can't create rank table for:", localFile, ":", e.Msg()));
+ LOG(LWARNING, ("Can't create rank table for:", localFile, ":", e.what()));
}
}