]> code.bitgloo.com Git - clyne/entityx.git/commitdiff
Include cstdint instead of stdint.h
authorTomislav Ivek <tomislav.ivek@gmail.com>
Sat, 25 Oct 2014 19:04:33 +0000 (21:04 +0200)
committerTomislav Ivek <tomislav.ivek@gmail.com>
Sat, 25 Oct 2014 19:04:33 +0000 (21:04 +0200)
entityx/Entity.h
entityx/Event.h
entityx/System.h

index e5c748078821b4c606e7ab6afc6c665eb5aff98d..fc0abef0954306d6723ca1f308cd2e058d283906 100644 (file)
@@ -11,7 +11,7 @@
 #pragma once
 
 
-#include <stdint.h>
+#include <cstdint>
 #include <tuple>
 #include <new>
 #include <cstdlib>
index 53afd7dec51605a71871f4f6c2b73bf3c94ed193..83d791bdeea548dcce1c38af165dc2bc757e499a 100644 (file)
@@ -10,7 +10,7 @@
 
 #pragma once
 
-#include <stdint.h>
+#include <cstdint>
 #include <cstddef>
 #include <vector>
 #include <list>
index 4854b8d6360a1edbaf7edc8ed04e6fad7be2c77b..4bba9e1dd9996ecfb7e1da008f56de4b239d4751 100644 (file)
@@ -11,7 +11,7 @@
 #pragma once
 
 
-#include <stdint.h>
+#include <cstdint>
 #include <unordered_map>
 #include <utility>
 #include <cassert>