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
path: root/drape
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 /drape
parentb64031160cf61bf566bcf22b692c223bef39fe67 (diff)
Fixed <cstdint>.
Diffstat (limited to 'drape')
-rw-r--r--drape/attribute_buffer_mutator.hpp2
-rw-r--r--drape/buffer_base.hpp2
-rw-r--r--drape/color.hpp2
-rw-r--r--drape/glconstants.hpp2
-rw-r--r--drape/shader.hpp2
-rw-r--r--drape/texture.hpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/drape/attribute_buffer_mutator.hpp b/drape/attribute_buffer_mutator.hpp
index 32c2c152fb..d5846c849c 100644
--- a/drape/attribute_buffer_mutator.hpp
+++ b/drape/attribute_buffer_mutator.hpp
@@ -5,7 +5,7 @@
#include "base/shared_buffer_manager.hpp"
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
#include "std/map.hpp"
namespace dp
diff --git a/drape/buffer_base.hpp b/drape/buffer_base.hpp
index 2be7849249..bc7234a1e6 100644
--- a/drape/buffer_base.hpp
+++ b/drape/buffer_base.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
namespace dp
{
diff --git a/drape/color.hpp b/drape/color.hpp
index 0f1ada0b1d..16e7c7bac9 100644
--- a/drape/color.hpp
+++ b/drape/color.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
namespace dp
{
diff --git a/drape/glconstants.hpp b/drape/glconstants.hpp
index 5abfbb7df1..ec226720e9 100644
--- a/drape/glconstants.hpp
+++ b/drape/glconstants.hpp
@@ -1,6 +1,6 @@
#pragma once
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
typedef uint32_t glConst;
diff --git a/drape/shader.hpp b/drape/shader.hpp
index 6b0990cd40..278aae1df5 100644
--- a/drape/shader.hpp
+++ b/drape/shader.hpp
@@ -3,7 +3,7 @@
#include "drape/glfunctions.hpp"
#include "std/string.hpp"
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
namespace dp
{
diff --git a/drape/texture.hpp b/drape/texture.hpp
index 544c7a3497..f780902237 100644
--- a/drape/texture.hpp
+++ b/drape/texture.hpp
@@ -6,7 +6,7 @@
#include "geometry/rect2d.hpp"
-#include "std/stdint.hpp"
+#include "std/cstdint.hpp"
#include "std/function.hpp"
namespace dp