aboutsummaryrefslogtreecommitdiff
path: root/include/irrTypes.h
diff options
context:
space:
mode:
authorVitaliy <numzer0@yandex.ru>2023-03-11 17:04:09 +0300
committerGitHub <noreply@github.com>2023-03-11 15:04:09 +0100
commit5a5a7d04b71b576ac9eed1bb58110009f8b46d0b (patch)
treea1d94ca96df4ddfdbfc2f190b8779a59da2073f4 /include/irrTypes.h
parent1d43ea17ca8ee9a01262e9e34c5c89579b97397f (diff)
downloadirrlicht-5a5a7d04b71b576ac9eed1bb58110009f8b46d0b.tar.xz
Drop IrrCompileConfig (#163)
Diffstat (limited to 'include/irrTypes.h')
-rw-r--r--include/irrTypes.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/irrTypes.h b/include/irrTypes.h
index e67b395..98b1ed6 100644
--- a/include/irrTypes.h
+++ b/include/irrTypes.h
@@ -5,7 +5,6 @@
#ifndef __IRR_TYPES_H_INCLUDED__
#define __IRR_TYPES_H_INCLUDED__
-#include "IrrCompileConfig.h"
#include <stdint.h>
namespace irr
@@ -38,13 +37,11 @@ typedef uint32_t u32;
typedef int32_t s32;
-#ifdef __IRR_HAS_S64
//! 64 bit unsigned variable.
typedef uint64_t u64;
//! 64 bit signed variable.
typedef int64_t s64;
-#endif // __IRR_HAS_S64