Skip to content

Commit

Permalink
Use cstdint instead of custom defines
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Dec 1, 2023
1 parent 4e7ae5d commit 9a8d9ce
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions instructionAPI/h/Result.h
Expand Up @@ -32,16 +32,7 @@
#define RESULT_H

#include <string.h> // memcmp
#if !defined(_MSC_VER)
#include <inttypes.h>
#else
typedef __int64 int64_t;
typedef __int32 int32_t;
typedef __int16 int16_t;
typedef unsigned __int64 uint64_t;
typedef unsigned __int32 uint32_t;
typedef unsigned __int16 uint16_t;
#endif
#include <cstdint>
#include <assert.h>
#include <string>

Expand Down

0 comments on commit 9a8d9ce

Please sign in to comment.