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:
authorAlex Zolotarev <deathbaba@gmail.com>2012-12-14 17:13:02 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:47:58 +0300
commit98372ba583ca4a01bab65f8a0c63c55a9085cba9 (patch)
treec7e7b2d35ea4b768ec3f432648a70cc62bb3f861 /platform
parentfc00349a4de4d6199c0028067bf157617a5221dd (diff)
Moved invalid base64 implementation to another namespace
Diffstat (limited to 'platform')
-rw-r--r--platform/platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/platform.cpp b/platform/platform.cpp
index 93eb691731..185632e552 100644
--- a/platform/platform.cpp
+++ b/platform/platform.cpp
@@ -28,7 +28,7 @@ string Platform::HashUniqueID(string const & s)
for (size_t i = 0; i < offset; ++i)
xoredHash.push_back(hash[i] ^ hash[i + offset] ^ hash[i + offset * 2] ^ hash[i + offset * 3]);
// and use base64 encoding
- return base64::encode(xoredHash);
+ return base64_for_user_ids::encode(xoredHash);
}
string Platform::ResourcesMetaServerUrl() const