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-01-10 16:56:42 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:31:37 +0300
commit7819492f9a96251d127471f4af6895e0c22356d3 (patch)
treeea90416d60e3ca91f999bdb51fa81e1e5ccaf7a8 /platform/platform_tests
parentc1dd341e200eb7235e928cc3de534cee37ddf172 (diff)
[win] Fixed compilation errors
Diffstat (limited to 'platform/platform_tests')
-rw-r--r--platform/platform_tests/downloader_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/platform_tests/downloader_test.cpp b/platform/platform_tests/downloader_test.cpp
index cccc01ba92..e422bfe56d 100644
--- a/platform/platform_tests/downloader_test.cpp
+++ b/platform/platform_tests/downloader_test.cpp
@@ -437,11 +437,11 @@ struct ResumeChecker
{
if (m_counter == 0)
{
- TEST_EQUAL(request.Progress(), make_pair(beg2, FILESIZE), ());
+ TEST_EQUAL(request.Progress(), HttpRequest::ProgressT(beg2, FILESIZE), ());
}
else if (m_counter == 1)
{
- TEST_EQUAL(request.Progress(), make_pair(FILESIZE, FILESIZE), ());
+ TEST_EQUAL(request.Progress(), HttpRequest::ProgressT(FILESIZE, FILESIZE), ());
}
else
{