From 8314310c0e8a63bed40abf95b7741b10c24521eb Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Fri, 21 Oct 2016 19:41:22 +0300 Subject: [PATCH] [android] Rename create socket function. --- android/jni/com/mapswithme/platform/SocketImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/jni/com/mapswithme/platform/SocketImpl.cpp b/android/jni/com/mapswithme/platform/SocketImpl.cpp index 79d2b24b93..dc248ac598 100644 --- a/android/jni/com/mapswithme/platform/SocketImpl.cpp +++ b/android/jni/com/mapswithme/platform/SocketImpl.cpp @@ -71,5 +71,5 @@ private: jobject m_self; }; -unique_ptr createSocket() { return make_unique(); } +unique_ptr CreateSocket() { return make_unique(); } }