Skip to content

Commit

Permalink
<cstdint> is added in C++11
Browse files Browse the repository at this point in the history
  • Loading branch information
untodesu committed Jul 27, 2021
1 parent 1c0f07d commit b4c8245
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/AL/salad.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ typedef unsigned short salad_uint16_t;
#include <stdint.h>
typedef int32_t salad_int32_t;
typedef uint32_t salad_uint32_t;
#elif defined(__cplusplus) && __cplusplus >= 199711L
#elif defined(__cplusplus) && __cplusplus >= 201103L
#include <cstdint>
typedef std::int32_t salad_int32_t;
typedef std::uint32_t salad_uint32_t;
Expand Down

0 comments on commit b4c8245

Please sign in to comment.