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:
authorAlex Zolotarev <alex@mapswithme.com>2014-08-08 07:52:11 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:25:04 +0300
commit1c8675c1d55fdf66b64b06f7e736b557ae533298 (patch)
treec6e849c39bfaaae29d11956bdbdf3a77f17173b7 /map/anim_phase_chain.cpp
parentbaf239aef8bfbc76b2e1b09c5dc59b8463160a3b (diff)
[cpp11] make_shared_ptr -> std::make_shared
Diffstat (limited to 'map/anim_phase_chain.cpp')
-rw-r--r--map/anim_phase_chain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/map/anim_phase_chain.cpp b/map/anim_phase_chain.cpp
index e37cc54ab2..ca7242c66a 100644
--- a/map/anim_phase_chain.cpp
+++ b/map/anim_phase_chain.cpp
@@ -64,6 +64,6 @@ shared_ptr<anim::Task> CreateDefaultPinAnim(Framework & f, double & scale)
AnimPhaseChain * anim = new AnimPhaseChain(f, scale);
InitDefaultPinAnim(anim);
- return make_shared_ptr<anim::Task>(anim);
+ return shared_ptr<anim::Task>(anim);
}