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
path: root/std
diff options
context:
space:
mode:
authorSergey Pisarchik <pisarchik@mapswithme.com>2014-04-17 16:30:52 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:14:57 +0300
commit4668e84483ba91e2f79fabef98b5baebea73731f (patch)
treea42414426671e3d108f80cf77471b1b9c4c7d54f /std
parent03f8dd2bb4ccbc38f0fe6675975fff7b8eed8914 (diff)
Compile errors fixes
Diffstat (limited to 'std')
-rw-r--r--std/shared_ptr.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/std/shared_ptr.hpp b/std/shared_ptr.hpp
index 6a7dcf7590..23b69a1921 100644
--- a/std/shared_ptr.hpp
+++ b/std/shared_ptr.hpp
@@ -8,6 +8,8 @@
#include <boost/shared_ptr.hpp>
using boost::shared_ptr;
+using boost::static_pointer_cast;
+
template <typename T>
inline shared_ptr<T> make_shared_ptr(T * t)
{