mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
etcpak: Remove C++11 dependency on cstdint when compiling with an earlier standard revision.
git-svn-id: https://svn.eduke32.com/eduke32@5685 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6fb3ac4fab
commit
f07aebfc28
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,11 @@
|
|||
#ifndef DARKRL__TYPES_HPP__
|
||||
#define DARKRL__TYPES_HPP__
|
||||
|
||||
#include <cstdint>
|
||||
#if __cplusplus < 201103L
|
||||
# include <stdint.h>
|
||||
#else
|
||||
# include <cstdint>
|
||||
#endif
|
||||
|
||||
typedef int8_t int8;
|
||||
typedef uint8_t uint8;
|
||||
|
|
Loading…
Reference in a new issue