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 /openlr/decoded_path.cpp
parentbf2efe31fe88d740abf22edcb83071a78eba3296 (diff)
[base] Removed the MY_ prefix from the scope guard.
Diffstat (limited to 'openlr/decoded_path.cpp')
-rw-r--r--openlr/decoded_path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/openlr/decoded_path.cpp b/openlr/decoded_path.cpp
index 1871e10b6d..6d7bd78b04 100644
--- a/openlr/decoded_path.cpp
+++ b/openlr/decoded_path.cpp
@@ -82,7 +82,7 @@ void WriteAsMappingForSpark(std::ostream & ost, std::vector<DecodedPath> const &
{
auto const flags = ost.flags();
ost << std::fixed; // Avoid scientific notation cause '-' is used as fields separator.
- MY_SCOPE_GUARD(guard, ([&ost, &flags] { ost.flags(flags); }));
+ SCOPE_GUARD(guard, ([&ost, &flags] { ost.flags(flags); }));
for (auto const & p : paths)
{