diff --git a/platform/apple_location_service.mm b/platform/apple_location_service.mm index c585b8a112..2ff412b75b 100644 --- a/platform/apple_location_service.mm +++ b/platform/apple_location_service.mm @@ -106,7 +106,7 @@ public: @end -extern "C" location::LocationService * CreateAppleLocationService(LocationObserver & observer) +std::unique_ptr CreateAppleLocationService(LocationObserver & observer) { - return new AppleLocationService(observer); + return std::make_unique(observer); } diff --git a/platform/location_service.cpp b/platform/location_service.cpp index 89ca49c315..962dca8032 100644 --- a/platform/location_service.cpp +++ b/platform/location_service.cpp @@ -6,7 +6,9 @@ #include #include -extern "C" location::LocationService * CreateAppleLocationService(location::LocationObserver &); +#if defined(OMIM_OS_MAC) +std::unique_ptr CreateAppleLocationService(location::LocationObserver &); +#endif namespace location { @@ -70,7 +72,7 @@ public: : LocationService(observer), m_reportFirstEvent(true) { #if defined(OMIM_OS_MAC) - m_services.push_back(std::unique_ptr(CreateAppleLocationService(*this))); + m_services.push_back(CreateAppleLocationService(*this)); #endif }