[toolchain upgrade] fixed build errors and warnings in gcc6x mode
[platform/core/location/maps-plugin-here.git] / inc / engine / maps / GeoObjectProvider.h
index b742203..03cf9c3 100644 (file)
@@ -132,7 +132,11 @@ private:
     HERE_MAPS_NO_COPY_NO_ASSIGN(GeoObjectProvider);
 
     class GeoObjectProviderImpl;
+#ifdef TIZEN_CFG_CPP11_UNIQUE_PTR
+    std::unique_ptr<GeoObjectProviderImpl> m_impl;
+#else
     std::auto_ptr<GeoObjectProviderImpl> m_impl;
+#endif
 };
 
 HERE_MAPS_END_NAMESPACE