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:
authorAlex Zolotarev <alex@maps.me>2015-06-24 13:46:55 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:52:31 +0300
commit65e733dfea699d9c75c1f413488a2d9071944c03 (patch)
tree3891e3f4588175ec85f2a9ed4e48303db28b4130 /platform
parentb64031160cf61bf566bcf22b692c223bef39fe67 (diff)
Fixed <cstdint>.
Diffstat (limited to 'platform')
-rw-r--r--platform/chunks_download_strategy.hpp2
-rw-r--r--platform/constants.hpp2
-rw-r--r--platform/http_request.hpp2
-rw-r--r--platform/http_thread_callback.hpp2
-rw-r--r--platform/http_thread_qt.hpp2
5 files changed, 5 insertions, 5 deletions
diff --git a/platform/chunks_download_strategy.hpp b/platform/chunks_download_strategy.hpp
index f97b94e783..213cac5bd1 100644
--- a/platform/chunks_download_strategy.hpp
+++ b/platform/chunks_download_strategy.hpp
@@ -3,7 +3,7 @@
#include "std/string.hpp"
#include "std/vector.hpp"
#include "std/utility.hpp"
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
namespace downloader
diff --git a/platform/constants.hpp b/platform/constants.hpp
index 51b2e3be40..442fa8fc17 100644
--- a/platform/constants.hpp
+++ b/platform/constants.hpp
@@ -1,5 +1,5 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
static const uint32_t READER_CHUNK_LOG_SIZE = 10;
diff --git a/platform/http_request.hpp b/platform/http_request.hpp
index cc37416a81..79decab2f2 100644
--- a/platform/http_request.hpp
+++ b/platform/http_request.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
#include "std/function.hpp"
#include "std/string.hpp"
#include "std/vector.hpp"
diff --git a/platform/http_thread_callback.hpp b/platform/http_thread_callback.hpp
index a9b2d5c2c5..fe2bc4ce47 100644
--- a/platform/http_thread_callback.hpp
+++ b/platform/http_thread_callback.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
namespace downloader
{
diff --git a/platform/http_thread_qt.hpp b/platform/http_thread_qt.hpp
index fae304e10e..1ea32fca7c 100644
--- a/platform/http_thread_qt.hpp
+++ b/platform/http_thread_qt.hpp
@@ -1,7 +1,7 @@
#pragma once
#include "std/string.hpp"
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
#include <QObject>
#include <QNetworkReply>