Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use cstdint #7

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions source/oxorany.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ typedef UINT32 _lxy__uint32_t;
typedef UINT64 _lxy__uint64_t;
typedef SIZE_T _lxy__size_t;
#else
#include <stdint.h>
typedef uint8_t _lxy__uint8_t;
typedef uint32_t _lxy__uint32_t;
typedef uint64_t _lxy__uint64_t;
typedef size_t _lxy__size_t;
#include <cstdint>
using _lxy__uint8_t = uint8_t;
using _lxy__uint32_t = uint32_t;
using _lxy__uint64_t = uint64_t;
using _lxy__size_t = size_t;
#endif

#if _WIN32 || _WIN64
Expand Down Expand Up @@ -766,4 +766,4 @@ namespace _lxy_oxor_any_ {
};
}

#endif // OXORANY_H
#endif // OXORANY_H