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:
authorDenis Koronchik <denis.koronchik@gmail.com>2014-08-11 16:32:13 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:24:06 +0300
commit8e4497a150acd75be4b15cca801e96bd0fff04a8 (patch)
treeff53562fc909ff38d94b447ee515b2ab675135eb
parentc4aae9566df36a9de54c0dd1e014de1232b3b860 (diff)
Fix compilation on linux
-rw-r--r--routing/vehicle_model.hpp1
-rw-r--r--std/stdint.hpp3
2 files changed, 4 insertions, 0 deletions
diff --git a/routing/vehicle_model.hpp b/routing/vehicle_model.hpp
index 3c5595cd34..2a7303c8af 100644
--- a/routing/vehicle_model.hpp
+++ b/routing/vehicle_model.hpp
@@ -2,6 +2,7 @@
#include "../std/unordered_map.hpp"
#include "../std/utility.hpp"
#include "../std/vector.hpp"
+#include "../std/stdint.hpp"
class Classificator;
class FeatureType;
diff --git a/std/stdint.hpp b/std/stdint.hpp
index 7f444a3ceb..16786e8886 100644
--- a/std/stdint.hpp
+++ b/std/stdint.hpp
@@ -20,6 +20,9 @@
#include <stdint.h>
#else
+ #ifdef OMIM_OS_LINUX
+ #include <stdint.h>
+ #endif
#include <boost/cstdint.hpp>
#endif