Linux compilation fixes.
This commit is contained in:
parent
7a7c47a45d
commit
643c5cfe82
6 changed files with 10 additions and 7 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -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
2
env/file_system.cpp
vendored
|
@ -1,5 +1,5 @@
|
|||
#include "file_system.hpp"
|
||||
|
||||
#include "../std/cstdio.hpp"
|
||||
|
||||
namespace fs
|
||||
{
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "../std/cmath.hpp"
|
||||
#include "../std/static_assert.hpp"
|
||||
#include "../std/array.hpp"
|
||||
|
||||
#include "../std/cstring.hpp"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include "../std/string.hpp"
|
||||
#include "../std/algorithm.hpp"
|
||||
|
||||
#include "../std/stdint.hpp"
|
||||
|
||||
namespace wr { class Writer; }
|
||||
namespace rd { class Reader; }
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include "article_info.hpp"
|
||||
|
||||
#include "../std/map.hpp"
|
||||
|
||||
#include "../std/stdint.hpp"
|
||||
|
||||
class ArticleInfoBuilder : public ArticleInfo
|
||||
{
|
||||
|
|
Reference in a new issue