forked from organicmaps/organicmaps-tmp
Warning and compilation fixes
This commit is contained in:
parent
d6389417b0
commit
1434e75808
5 changed files with 13 additions and 8 deletions
|
@ -75,12 +75,13 @@ UNIT_TEST(FeatureMerger_MultipleTypes)
|
|||
|
||||
UNIT_TEST(FeatureMerger_Branches)
|
||||
{
|
||||
// Try to unite next configuration
|
||||
// o
|
||||
// /\
|
||||
// o--o--o--o
|
||||
// \/
|
||||
// o
|
||||
/* Try to unite next configuration
|
||||
o
|
||||
/\
|
||||
o--o--o--o
|
||||
\/
|
||||
o
|
||||
*/
|
||||
|
||||
vector<FeatureBuilder1> vF;
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ class WorldMapGenerator
|
|||
public:
|
||||
template <class TInit>
|
||||
WorldEmitter(int maxScale, TInit const & initData)
|
||||
: m_maxWorldScale(maxScale), m_output(WORLD_FILE_NAME, initData)
|
||||
: m_output(WORLD_FILE_NAME, initData), m_maxWorldScale(maxScale)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -934,7 +934,7 @@ public:
|
|||
: m_priorities(priorities), m_result(result), m_minPriority(256) {}
|
||||
bool operator() (char lang, string const & utf8s)
|
||||
{
|
||||
int const priority = m_priorities[lang];
|
||||
int const priority = m_priorities[static_cast<uint8_t>(lang)];
|
||||
if (priority == 0)
|
||||
{
|
||||
m_result = utf8s;
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#include "../../testing/testing.hpp"
|
||||
#include "../string_match.hpp"
|
||||
|
||||
#include "../../std/memcpy.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
|
|
|
@ -35,7 +35,9 @@ namespace yg
|
|||
m_fillSkinAlpha(fillSkinAlpha)
|
||||
{
|
||||
if (useVA)
|
||||
{
|
||||
LOG(LINFO, ("buffer objects are unsupported. using client vertex array instead."));
|
||||
}
|
||||
|
||||
for (size_t i = 0; i < storagesCount; ++i)
|
||||
m_storages.push_back(gl::Storage(vbSize, ibSize, m_useVA));
|
||||
|
|
Loading…
Add table
Reference in a new issue