https://github.com/N-BodyShop/changa
Raw File
Tip revision: 6d5e939b327b31c7805f9bc0d5427ffe5762f637 authored by Tom Quinn on 11 July 2022, 17:08:21 UTC
Clean up many warnings from gcc v12.
Tip revision: 6d5e939
keytype.h
#include "converse.h"

#ifdef BIGKEYS
# if CMK_HAS_INT16
typedef CmiUInt16 KeyType;
# else
#error  "128-bit integer not supported."
# endif
#else
typedef CmiUInt8  KeyType;
#endif

back to top