aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--entityx/Entity.h2
-rw-r--r--entityx/Event.h2
-rw-r--r--entityx/System.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/entityx/Entity.h b/entityx/Entity.h
index e5c7480..fc0abef 100644
--- a/entityx/Entity.h
+++ b/entityx/Entity.h
@@ -11,7 +11,7 @@
#pragma once
-#include <stdint.h>
+#include <cstdint>
#include <tuple>
#include <new>
#include <cstdlib>
diff --git a/entityx/Event.h b/entityx/Event.h
index 53afd7d..83d791b 100644
--- a/entityx/Event.h
+++ b/entityx/Event.h
@@ -10,7 +10,7 @@
#pragma once
-#include <stdint.h>
+#include <cstdint>
#include <cstddef>
#include <vector>
#include <list>
diff --git a/entityx/System.h b/entityx/System.h
index 4854b8d..4bba9e1 100644
--- a/entityx/System.h
+++ b/entityx/System.h
@@ -11,7 +11,7 @@
#pragma once
-#include <stdint.h>
+#include <cstdint>
#include <unordered_map>
#include <utility>
#include <cassert>