diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-08-22 08:17:16 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-08-22 08:17:16 -0400 |
commit | a1016647f68e2f9a1be452240204d34874f89338 (patch) | |
tree | 662f2acf2b558e676d2524c1689ffd09318ba82f /tools/nitrobanner/types.h | |
parent | 6a0b937064907c1790447f7ddd0c60e66e49cd70 (diff) | |
parent | d08722a7381c4c05a40ee59bb6de556616e1dfc2 (diff) |
Merge remote-tracking branch 'origin/master' into pikalax_work
Diffstat (limited to 'tools/nitrobanner/types.h')
-rw-r--r-- | tools/nitrobanner/types.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/nitrobanner/types.h b/tools/nitrobanner/types.h new file mode 100644 index 00000000..5776e62f --- /dev/null +++ b/tools/nitrobanner/types.h @@ -0,0 +1,15 @@ +#pragma once + +#include <cstdint> + +#if (__GNUC__ <= 7) && !defined _MSC_VER +#include <experimental/filesystem> +namespace filesystem = std::experimental::filesystem; +#else +#include <filesystem> +namespace filesystem = std::filesystem; +#endif + +using u8 = uint8_t; +using u16 = uint16_t; +using u32 = uint32_t; |