forked from organicmaps/organicmaps
[win] Fixed compilation errors
This commit is contained in:
parent
c1dd341e20
commit
7819492f9a
4 changed files with 6 additions and 5 deletions
|
@ -4,7 +4,7 @@ CONFIG -= app_bundle
|
|||
TEMPLATE = app
|
||||
|
||||
ROOT_DIR = ../..
|
||||
DEPENDENCIES = indexer platform coding base protobuf
|
||||
DEPENDENCIES = indexer platform geometry coding base protobuf
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
QT *= core
|
||||
|
|
|
@ -6,7 +6,7 @@ CONFIG -= app_bundle
|
|||
TEMPLATE = app
|
||||
|
||||
ROOT_DIR = ../..
|
||||
DEPENDENCIES = map indexer platform coding base gflags protobuf
|
||||
DEPENDENCIES = map indexer platform geometry coding base gflags protobuf
|
||||
|
||||
include($$ROOT_DIR/common.pri)
|
||||
|
||||
|
|
|
@ -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
|
||||
{
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "../../base/logging.hpp"
|
||||
#include "../../base/string_utils.hpp"
|
||||
#include "../../base/stl_add.hpp"
|
||||
|
||||
#include "../../std/bind.hpp"
|
||||
|
||||
|
@ -43,7 +44,7 @@ namespace yg
|
|||
|
||||
vector<string> names;
|
||||
|
||||
strings::Tokenize(string(reinterpret_cast<char const *>(glGetString(GL_EXTENSIONS))), " ", bind(&vector<string>::push_back, &names, _1));
|
||||
strings::Tokenize(string(reinterpret_cast<char const *>(glGetString(GL_EXTENSIONS))), " ", MakeBackInsertFunctor(names));
|
||||
|
||||
for (unsigned i = 0; i < names.size(); ++i)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue