V0.8: Update PLI_BYTE definition.
The standard defines this as char not signed char. Using signed char was causing some compiler warnings in the vpi tests with modern compilers.
This commit is contained in:
parent
9bab275716
commit
3cc12e8446
|
|
@ -39,7 +39,7 @@ typedef int32_t PLI_INT32;
|
|||
|
||||
typedef signed short PLI_INT16;
|
||||
typedef unsigned short PLI_UINT16;
|
||||
typedef signed char PLI_BYTE8;
|
||||
typedef char PLI_BYTE8;
|
||||
typedef unsigned char PLI_UBYTE8;
|
||||
|
||||
# define PLI_UINT64_FMT PRIu64
|
||||
|
|
|
|||
Loading…
Reference in New Issue