diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2024-10-12 22:20:27 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2024-10-12 22:20:27 -0400 |
| commit | 1ac46b846f57cd97e289325e3ad8fd59f8e48208 (patch) | |
| tree | 99524fed55e62dbec597ee5a7b7ecd3616f3f787 /pkmem-types.h | |
| parent | 926a35c70e160a2843efea6ee3cb39ff5c5791c8 (diff) | |
pk_handle_validate isn't static inline
Diffstat (limited to 'pkmem-types.h')
| -rw-r--r-- | pkmem-types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkmem-types.h b/pkmem-types.h index 8be66f1..2e96433 100644 --- a/pkmem-types.h +++ b/pkmem-types.h @@ -20,7 +20,7 @@ struct pk_handle { const struct pk_handle pk_handle_MAX = (struct pk_handle){ .bucketIndex = 0xFFFFFFFF, .itemIndex = 0xFFFFFFFF }; -static inline enum PK_HANDLE_VALIDATION pk_handle_validate(const struct pk_handle handle, const struct pk_handle bucketHandle, const uint64_t maxItems); +enum PK_HANDLE_VALIDATION pk_handle_validate(const struct pk_handle handle, const struct pk_handle bucketHandle, const uint64_t maxItems); #if defined(__cplusplus) |
