diff options
author | Tomislav Ivek <tomislav.ivek@gmail.com> | 2014-10-25 21:04:33 +0200 |
---|---|---|
committer | Tomislav Ivek <tomislav.ivek@gmail.com> | 2014-10-25 21:04:33 +0200 |
commit | 24f013c95c79d679de8fa7969ef7568a1192f0a7 (patch) | |
tree | 978a62cbfe31ef851fc870ce07ba0fa24092ee7f | |
parent | ff13e11e706c377f767e61b781c63c99c8f665eb (diff) |
Include cstdint instead of stdint.h
-rw-r--r-- | entityx/Entity.h | 2 | ||||
-rw-r--r-- | entityx/Event.h | 2 | ||||
-rw-r--r-- | entityx/System.h | 2 |
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> |