Linux compilation fixes.

This commit is contained in:
Alexander Zolotarev 2016-10-20 09:41:51 +02:00
parent 7a7c47a45d
commit 643c5cfe82
6 changed files with 10 additions and 7 deletions

7
.gitignore vendored
View file

@ -8,6 +8,9 @@ build/
*.pyc
.idea
*.iml
*.o
Makefile
.qmake.stash
project.xcworkspace
xcuserdata
@ -19,6 +22,8 @@ data/thumb/
data/index.dat
data/header_images/
env/env_tests
builder/genindex/genindex
builder/wikivoyage/*.redirect.txt
@ -31,5 +36,3 @@ builder/wikivoyage/Countries
# This is separate git repository with MWM API
android/3rdparty/api-android
builder/genindex/.qmake.stash
builder/genindex/Makefile

2
env/file_system.cpp vendored
View file

@ -1,5 +1,5 @@
#include "file_system.hpp"
#include "../std/cstdio.hpp"
namespace fs
{

View file

@ -13,7 +13,7 @@
#include "../std/cmath.hpp"
#include "../std/static_assert.hpp"
#include "../std/array.hpp"
#include "../std/cstring.hpp"
namespace
{

View file

@ -2,7 +2,7 @@
#include "../std/string.hpp"
#include "../std/algorithm.hpp"
#include "../std/stdint.hpp"
namespace wr { class Writer; }
namespace rd { class Reader; }

View file

@ -7,7 +7,7 @@
#include "../std/algorithm.hpp"
#include "../std/utility.hpp"
#include "../std/iterator.hpp"
#include "../std/stdint.hpp"
void Storage::Load(rd::Reader & reader)
{

View file

@ -4,7 +4,7 @@
#include "article_info.hpp"
#include "../std/map.hpp"
#include "../std/stdint.hpp"
class ArticleInfoBuilder : public ArticleInfo
{