summaryrefslogtreecommitdiff
path: root/asl/base/integers.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'asl/base/integers.hpp')
-rw-r--r--asl/base/integers.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/asl/base/integers.hpp b/asl/base/integers.hpp
deleted file mode 100644
index 07fa11e..0000000
--- a/asl/base/integers.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-
-using int8_t = char;
-using int16_t = short;
-using int32_t = int;
-using int64_t = long long;
-
-using uint8_t = unsigned char;
-using uint16_t = unsigned short;
-using uint32_t = unsigned int;
-using uint64_t = unsigned long long;
-