diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-25 17:42:56 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2024-01-25 17:42:56 +0100 |
commit | 8d06606835e3d01f537ebe96de8b216e64a1f969 (patch) | |
tree | 5def38115e55b4b9b78a016e6fe9cfc2771d22a0 /src/cpp0x_compat/cstdint | |
parent | dadefbcd103bd11bc74ca35a40d18dd2c1877f70 (diff) | |
download | mana-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.gz mana-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.bz2 mana-8d06606835e3d01f537ebe96de8b216e64a1f969.tar.xz mana-8d06606835e3d01f537ebe96de8b216e64a1f969.zip |
Always use C++11 and remove related compatibility option/code
Diffstat (limited to 'src/cpp0x_compat/cstdint')
-rw-r--r-- | src/cpp0x_compat/cstdint | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cpp0x_compat/cstdint b/src/cpp0x_compat/cstdint deleted file mode 100644 index 05d56c6e..00000000 --- a/src/cpp0x_compat/cstdint +++ /dev/null @@ -1,10 +0,0 @@ -/* - * Compatibility header used when the compiler doesn't support C++0x. - * - * While GCC 4.2.1 understands types like uint16_t by default, later versions - * are more strict so here are some typedefs for types used in our code. - */ - -typedef unsigned char uint8_t; -typedef unsigned short uint16_t; -typedef unsigned int uint32_t; |