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:
authorAlexander Zatsepin <az@mapswithme.com>2018-08-16 19:36:02 +0300
committerDaria Volvenkova <d.volvenkova@corp.mail.ru>2018-08-16 19:42:31 +0300
commitd25654a0b2413d3a52b93216dde56b3de2bd641d (patch)
tree1338c33fb52b5071e61f50b84adf785d1c4395ba
parentd99df86b281574ff37e77b0b78e103d48446e235 (diff)
[android] Fixed buildios-store-835
-rw-r--r--platform/http_user_agent.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/http_user_agent.cpp b/platform/http_user_agent.cpp
index ee50a83694..c8a42262a7 100644
--- a/platform/http_user_agent.cpp
+++ b/platform/http_user_agent.cpp
@@ -15,9 +15,9 @@ std::string HttpUserAgent::Get() const
{
std::stringstream ss;
ss << "MAPS.ME/";
-#ifdef OMIM_OS_IPHONE
+#if defined(OMIM_OS_IPHONE)
ss << "iOS/";
-#elif OMIM_OS_ANDROID
+#elif defined(OMIM_OS_ANDROID)
ss << "Android/";
#else
ss << "Unknown/";