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:
authorMaxim Pimenov <m@maps.me>2018-09-18 19:18:26 +0300
committerVlad Mihaylenko <vxmihaylenko@gmail.com>2018-09-19 13:39:37 +0300
commit253168ebefc38779fb5e39a24dca07c1b991ca73 (patch)
treeb6d049f09e22fcccd5220d5909a5000e307f84c7 /drape_frontend
parentbf2efe31fe88d740abf22edcb83071a78eba3296 (diff)
[base] Removed the MY_ prefix from the scope guard.
Diffstat (limited to 'drape_frontend')
-rw-r--r--drape_frontend/tile_info.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape_frontend/tile_info.cpp b/drape_frontend/tile_info.cpp
index c151c9efa7..e3b10f1cad 100644
--- a/drape_frontend/tile_info.cpp
+++ b/drape_frontend/tile_info.cpp
@@ -61,7 +61,7 @@ void TileInfo::ReadFeatures(MapDataProvider const & model)
m_context->BeginReadTile();
// Reading can be interrupted by exception throwing
- MY_SCOPE_GUARD(ReleaseReadTile, std::bind(&EngineContext::EndReadTile, m_context.get()));
+ SCOPE_GUARD(ReleaseReadTile, std::bind(&EngineContext::EndReadTile, m_context.get()));
ReadFeatureIndex(model);
CheckCanceled();